        :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;
        }

        .luxury-font {
            font-family: 'Playfair Display', serif;
        }

        /* Animated Background */
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--gold-primary);
            border-radius: 50%;
            animation: float 8s infinite ease-in-out;
            box-shadow: 0 0 6px var(--gold-primary);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        /* Glass Morphism */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
        }

        /* Gold Gradient */
        .gold-gradient {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Luxury Button */
        .luxury-btn {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
            border: none;
            color: var(--dark-bg);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .luxury-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .luxury-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .luxury-btn:hover::before {
            left: 100%;
        }

        /* Scroll Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Support Card */
        .support-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .support-card:hover::before {
            transform: scaleX(1);
        }

        .support-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-primary);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
        }

        /* FAQ Accordion */
        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 215, 0, 0.05);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }

        /* Typing Effect */
        .typing-text {
            border-right: 2px solid var(--gold-primary);
            animation: blink 1s infinite;
        }

        @keyframes blink {

            0%,
            50% {
                border-color: var(--gold-primary);
            }

            51%,
            100% {
                border-color: transparent;
            }
        }

        /* Glow Effect */
        .glow {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        /* Support Tier Badge */
        .tier-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tier-bronze {
            background: linear-gradient(135deg, #CD7F32, #A0522D);
            color: white;
        }

        .tier-silver {
            background: linear-gradient(135deg, #C0C0C0, #808080);
            color: white;
        }

        .tier-gold {
            background: linear-gradient(135deg, #FFD700, #B8860B);
            color: #000;
        }

        .tier-platinum {
            background: linear-gradient(135deg, #E5E4E2, #BCC6CC);
            color: #000;
        }

        /* Live Chat Simulation */
        .chat-bubble {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 15px;
            margin: 10px 0;
            max-width: 70%;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Form Styling */
        .luxury-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            padding: 15px;
            color: white;
            width: 100%;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .luxury-input:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
        }

        .luxury-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Response Time Indicator */
        .response-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .response-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00ff00;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* Statistics Counter */
        .stat-counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold-primary);
            font-family: 'Playfair Display', serif;
        }

        /* Priority Badge */
        .priority-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .priority-high {
            background: #ff4444;
            color: white;
        }

        .priority-medium {
            background: #ffaa00;
            color: white;
        }

        .priority-low {
            background: #00aa00;
            color: white;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .support-card {
                padding: 20px;
            }

            .stat-counter {
                font-size: 2rem;
            }
        }