
        :root {
            --primary: #00FFFF;
            --secondary: #40E0D0;
            --accent: #AFEEEE;
            --dark: #0f172a;
            --light: #f8fafc;
            --text: #1e293b;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, #1e293b 50%, #334155 100%);
            color: var(--light);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 2px solid rgba(0, 255, 255, 0.4);
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.9rem;
            color: var(--light);
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
            transition: all 0.3s ease;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }
        
        .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--accent) !important;
        }
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 212, 170, 0.2), transparent 30%),
                        radial-gradient(circle at bottom left, rgba(0, 168, 204, 0.2), transparent 30%);
            z-index: -1;
        }
        
       
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
        }
        
        .btn-outline-light:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 800;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .game-card {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            transition: none;
            border: none;
            margin-bottom: 24px;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(106, 17, 203, 0.5);
        }
        
        .game-iframe-container {
            background: transparent;
            border-radius: 0;
            padding: 0;
            margin: 24px 0;
            box-shadow: none;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        footer {
            background: #0c0c0c;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
        }
        
        /* Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 5s ease-in-out infinite;
        }
        
        .glow {
            text-shadow: 0 0 10px rgba(106, 17, 203, 0.5);
        }
        
        .page-content {
            padding: 100px 0;
            min-height: 70vh;
        }
        
        .content-card {
            background: transparent;
            border-radius: 0;
            padding: 0;
            margin-bottom: 24px;
            border: none;
        }
        
        .content-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Age verification modal */
        .age-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        
        .age-content {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            border: 2px solid var(--accent);
        }
        
        /* Cookie consent banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.95);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }
        
        /* Language selector */
        .language-selector {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 100;
        }
        
        /* Login form */
        .login-form {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 30px auto;
            max-width: 500px;
        }
        
        /* Simulated page system */
        #page-content {
            display: none;
        }
        
        #home-page {
            display: block;
        }

         footer {
            background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
            padding: 4rem 0 2rem;
            margin-top: 80px;
            border-top: 2px solid rgba(139, 92, 246, 0.3);
        }
        
        footer h4, footer h5 {
            font-weight: 700;
            color: #fff;
        }
        
        footer a {
            color: #e9ecef;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: var(--primary);
            text-decoration: none;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .about-section {
            background: #0f0f1e;
            padding: 4rem 0;
            color: #e9ecef;
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-notice {
            background: transparent;
            border-left: none;
            padding: 0;
            margin: 1rem 0;
            border-radius: 0;
            font-size: 0.9rem;
        }
        
        /* Page-specific styles */
        .privacy-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .privacy-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .privacy-list li:before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .disclaimer-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .disclaimer-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .disclaimer-list li:before {
            content: "•";
            color: var(--accent);
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -3px;
        }
        
        .last-updated {
            font-style: italic;
            color: #aaa;
            text-align: center;
            margin-top: 40px;
        }
        
        /* Game-specific styles for play.html */
        .game-container {
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .game-container:-webkit-full-screen {
            background: #000;
            border-radius: 0;
            padding: 0;
            margin: 0;
        }
        
        .game-container:-moz-full-screen {
            background: #000;
            border-radius: 0;
            padding: 0;
            margin: 0;
        }
        
        .game-container:fullscreen {
            background: #000;
            border-radius: 0;
            padding: 0;
            margin: 0;
        }
        
        #canvas {
            width: 100%;
            height: auto !important;
            max-height: 100%;
            object-fit: contain;
            display: block;
            border-radius: 10px;
        }
        
        #canvas:-webkit-full-screen {
            width: 100vw;
            height: 100vh;
            object-fit: contain;
        }
        
        #canvas:-moz-full-screen {
            width: 100vw;
            height: 100vh;
            object-fit: contain;
        }
        
        #canvas:fullscreen {
            width: 100vw;
            height: 100vh;
            object-fit: contain;
        }
        
        #game-wrapper * {
            pointer-events: auto;
        }
        
        .game-container canvas {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
        
        @media (max-width: 768px) {
            .game-container {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .game-container {
                height: 350px;
            }
        }
        
        @media (min-width: 769px) {
            .game-container {
                height: 500px;
            }
        }
        
        /* Hero Section Enhancements */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
            z-index: -1;
        }
        
        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-stats {
            margin-top: 2rem;
        }
        
        .stat-item h3 {
            font-size: 2rem;
            margin-bottom: 0.25rem;
        }
        
        /* Gaming Animation Container */
        .gaming-animation-container {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .game-screen {
            position: relative;
            width: 300px;
            height: 400px;
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        
        .screen-border {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: linear-gradient(145deg, #0f0f1e, #1a1a2e);
            border-radius: 15px;
            border: 2px solid rgba(139, 92, 246, 0.3);
        }
        
        .screen-content {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .game-ui {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .reels-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 200px;
            margin: 20px 0;
        }
        
        .reel {
            width: 60px;
            height: 180px;
            background: linear-gradient(180deg, #2d3748, #1a202c);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            border: 2px solid rgba(139, 92, 246, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .symbol {
            font-size: 2rem;
            animation: symbolGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes symbolGlow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.5) drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)); }
        }
        
        .game-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .spin-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .spin-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 212, 170, 0.6);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(0, 212, 170, 0.8); }
            100% { box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4); }
        }
        
        .bet-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .bet-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .bet-btn:hover {
            background: var(--accent);
            transform: scale(1.1);
        }
        
        .bet-amount {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .coin {
            position: absolute;
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
        }
        
        .coin-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .coin-2 {
            top: 20%;
            right: 15%;
            animation-delay: 0.5s;
        }
        
        .coin-3 {
            bottom: 30%;
            left: 20%;
            animation-delay: 1s;
        }
        
        .coin-4 {
            bottom: 20%;
            right: 10%;
            animation-delay: 1.5s;
        }
        
        .coin-5 {
            top: 50%;
            left: 5%;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Feature Cards */
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(139, 92, 246, 0.3);
        }
        
        .feature-icon-wrapper {
            margin-bottom: 1.5rem;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .feature-description {
            color: rgba(248, 249, 250, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .feature-highlight {
            margin-top: auto;
        }
        
        /* Game Cards */
        .game-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            height: 100%;
            display: flex; 
            flex-direction: column;
            justify-content: space-between;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(139, 92, 246, 0.3);
        }
        
        .game-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .game-card:hover .game-image img {
            transform: scale(1.1);
        }
        
        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .game-card:hover .game-overlay {
            opacity: 1;
        }
        
        .play-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
        }
        
        .game-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
        }
        
        .game-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .game-description {
            color: rgba(248, 249, 250, 0.8);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .game-features {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-tag {
            background: rgba(0, 255, 255, 0.2);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        
        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
            padding: 5rem 0;
            color: #e9ecef;
        }
        
        .about-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .about-stats {
            margin-top: 2rem;
        }
        
        .about-stats h4 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .gaming-animation-container {
                height: 300px;
                margin-top: 2rem;
            }
            
            .game-screen {
                width: 250px;
                height: 320px;
            }
            
            .hero-stats {
                justify-content: center;
                gap: 2rem;
            }
            
            .stat-item h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .gaming-animation-container {
                height: 250px;
            }
            
            .game-screen {
                width: 200px;
                height: 280px;
            }
            
            .reels-container {
                height: 150px;
            }
            
            .reel {
                width: 45px;
                height: 130px;
            }
            
            .symbol {
                font-size: 1.5rem;
            }
        }
        
        /* FAQ Accordion Styling */
        .accordion {
            --bs-accordion-color: var(--light);
            --bs-accordion-bg: transparent;
            --bs-accordion-transition: all 0.3s ease;
            --bs-accordion-border-color: rgba(139, 92, 246, 0.3);
            --bs-accordion-border-width: 1px;
            --bs-accordion-border-radius: 15px;
            --bs-accordion-inner-border-radius: calc(15px - 1px);
            --bs-accordion-btn-padding-x: 1.5rem;
            --bs-accordion-btn-padding-y: 1rem;
            --bs-accordion-btn-color: var(--light);
            --bs-accordion-btn-bg: rgba(139, 92, 246, 0.1);
            --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            --bs-accordion-btn-icon-width: 1rem;
            --bs-accordion-btn-icon-transform: rotate(-180deg);
            --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
            --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            --bs-accordion-btn-focus-border-color: var(--secondary);
            --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
            --bs-accordion-body-padding-x: 1.5rem;
            --bs-accordion-body-padding-y: 1rem;
            --bs-accordion-active-color: var(--light);
            --bs-accordion-active-bg: rgba(0, 255, 255, 0.2);
        }
        
        .accordion-item {
            background-color: transparent;
            border: 1px solid rgba(139, 92, 246, 0.3);
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
        }
        
        .accordion-button {
            background-color: rgba(139, 92, 246, 0.1);
            color: var(--light);
            font-weight: 600;
            border: none;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 255, 255, 0.2);
            color: var(--light);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
        }
        
        .accordion-button:hover {
            background-color: rgba(139, 92, 246, 0.15);
            color: var(--secondary);
        }
        
        .accordion-button:not(.collapsed):hover {
            background-color: rgba(139, 92, 246, 0.25);
            color: var(--secondary);
        }
        
        .accordion-body {
            background-color: rgba(0, 0, 0, 0.1);
            color: var(--light);
            padding: 1.5rem;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.2s ease-in-out;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(-180deg);
        }
