        :root {
            --gold-primary: #FFD700;
            --gold-secondary: #B8860B;
            --gold-accent: #DAA520;
            --dark-bg: #0a0a0a;
            --dark-secondary: #1a1a1a;
            --dark-accent: #2a2a2a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark-bg);
            color: #ffffff;
            overflow-x: hidden;
        }

        .gold-gradient {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
        }

        .dark-gradient {
            background: linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));
        }

        .glass-morphism {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
        }

        .gold-glow {
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        }

        .floating-particles {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold-primary);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 1;
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.5;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tier-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.5s;
        }

        .tier-card:hover::before {
            left: 100%;
        }

        .tier-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        }

        .typing-animation {
            border-right: 2px solid var(--gold-primary);
            animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
        }

        @keyframes typing {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blink {

            0%,
            50% {
                border-color: transparent;
            }

            51%,
            100% {
                border-color: var(--gold-primary);
            }
        }

        .progress-bar {
            height: 6px;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
            border-radius: 3px;
            transition: width 2s ease-out;
        }

        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: floating 8s ease-in-out infinite;
        }

        @keyframes floating {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 1rem;
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--gold-primary);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.2) rotate(360deg);
        }

        .application-form {
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
        }

        .form-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 1rem;
            color: white;
            width: 100%;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            color: black;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
        }

        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold-primary);
            font-family: 'Playfair Display', serif;
        }

        .tier-bronze {
            border-color: #CD7F32;
        }

        .tier-silver {
            border-color: #C0C0C0;
        }

        .tier-gold {
            border-color: var(--gold-primary);
        }

        .tier-platinum {
            border-color: #E5E4E2;
        }

        .network-viz {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .network-node {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gold-primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .exclusive-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
            color: black;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 30px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, var(--gold-primary), var(--gold-secondary));
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 10px;
            top: 10px;
            width: 12px;
            height: 12px;
            background: var(--gold-primary);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .success-story {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(184, 134, 11, 0.1));
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .success-story:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .tier-card {
                margin-bottom: 2rem;
            }
        }

        .add-new-color:hover {
            background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
            transition: all 0.2s linear;
        }

        .sec-pad {
            padding: 3rem 0 0 0;
        }