        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0c0e1d, #1a1c3a);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .logo i {
            font-size: 2.5rem;
            color: #8a2be2;
        }

        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #8a2be2, #4b0082);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(138, 43, 226, 0.3);
            margin-bottom: 10px;
        }

        .subtitle {
            color: #b0b0d6;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .card {
            background: rgba(30, 32, 60, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
            border: 1px solid rgba(138, 43, 226, 0.4);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #8a2be2, #4b0082);
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #e0d6ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card h3 i {
            color: #8a2be2;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #8a2be2;
            text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
        }

        .features {
            list-style: none;
            margin-bottom: 30px;
        }

        .features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .features li i {
            color: #8a2be2;
        }

        .buy-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #8a2be2, #4b0082);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }

        .buy-btn:hover {
            background: linear-gradient(90deg, #9a3bff, #5b10a3);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
        }

        .pricing-table {
            background: rgba(30, 32, 60, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
            overflow-x: auto;
        }

        .pricing-table h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: #e0d6ff;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        th {
            background: rgba(138, 43, 226, 0.2);
            color: #e0d6ff;
            font-weight: 600;
        }

        tr:hover {
            background: rgba(138, 43, 226, 0.1);
        }

        .highlight {
            color: #8a2be2;
            font-weight: bold;
        }

        .footer-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            padding: 20px;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 35px;
            background: linear-gradient(90deg, #8a2be2, #4b0082);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }

        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(138, 43, 226, 0.6);
            background: linear-gradient(90deg, #9a3bff, #5b10a3);
        }

        .action-btn.secondary {
            background: rgba(30, 32, 60, 0.7);
            border: 1px solid #8a2be2;
        }

        .action-btn.secondary:hover {
            background: rgba(138, 43, 226, 0.2);
        }

        .notice {
            text-align: center;
            color: #b0b0d6;
            margin-top: 30px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem
        }

        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: 1fr;
            }

            .footer-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .action-btn {
                width: 100%;
                max-width: 300px;
            }
        }