  :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffcc00;
            --yellow-dark: #e6b800;
            --dark-bg: #0a0a14;
            --darker-bg: #05050a;
            --light-text: #f5f5f5;
            --gray-text: #b0b0c0;
            --card-bg: rgba(20, 20, 30, 0.8);
            --gradient-red: linear-gradient(135deg, #ff003c, #cc002f);
            --gradient-yellow: linear-gradient(135deg, #ffcc00, #e6b800);
            --gradient-gold: linear-gradient(135deg, #ffcc00, #ff9900, #ff6600);
            --shadow-glow: 0 0 15px rgba(255, 0, 60, 0.5);
            --shadow-glow-yellow: 0 0 15px rgba(255, 204, 0, 0.5);
            --shadow-glow-gold: 0 0 20px rgba(255, 204, 0, 0.7);
        }
       :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffcc00;
            --yellow-dark: #e6b800;
            --dark-bg: #0a0a14;
            --darker-bg: #05050a;
            --light-text: #f5f5f5;
            --gray-text: #b0b0c0;
            --card-bg: rgba(20, 20, 30, 0.8);
            --gradient-red: linear-gradient(135deg, #ff003c, #cc002f);
            --gradient-yellow: linear-gradient(135deg, #ffcc00, #e6b800);
            --gradient-gold: linear-gradient(135deg, #ffcc00, #ff9900, #ff6600);
            --shadow-glow: 0 0 15px rgba(255, 0, 60, 0.5);
            --shadow-glow-yellow: 0 0 15px rgba(255, 204, 0, 0.5);
            --shadow-glow-gold: 0 0 20px rgba(255, 204, 0, 0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

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

        .btn {
            display: inline-block;
            background: var(--gradient-red);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 204, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            box-shadow: var(--shadow-glow-gold);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav ul li a {
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-gold);
            padding: 10px 25px;
            border-radius: 30px;
            margin-left: 30px;
            box-shadow: var(--shadow-glow-gold);
        }

        .nav-cta:hover {
            background: var(--gradient-red);
            box-shadow: var(--shadow-glow);
        }

        .nav-cta:hover::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }

        /* Terms Hero */
        .terms-hero {
            background: linear-gradient(rgba(5, 5, 10, 0.85), rgba(5, 5, 10, 0.9)), url('ban.png') no-repeat center center/cover;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 80px;
            border-bottom: 3px solid var(--bright-yellow);
        }

        .terms-hero h1 {
            font-size: 3.5rem;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            background: linear-gradient(to right, var(--bright-yellow), #ff9900, var(--neon-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Terms Content */
        .terms-content {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }

        .terms-section {
            margin-bottom: 50px;
            background: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid var(--bright-yellow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .terms-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 25px;
            font-size: 2rem;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 204, 0, 0.3);
        }

        .terms-section h3 {
            color: var(--gray-text);
            margin: 30px 0 15px;
            font-size: 1.4rem;
            color: var(--bright-yellow);
        }

        .terms-section p {
            margin-bottom: 20px;
            color: var(--gray-text);
            line-height: 1.8;
        }

        .terms-section ul {
            margin-left: 25px;
            margin-bottom: 25px;
        }

        .terms-section li {
            margin-bottom: 12px;
            color: var(--gray-text);
            line-height: 1.7;
            position: relative;
            padding-left: 10px;
        }

        .terms-section li::before {
            content: '•';
            color: var(--bright-yellow);
            font-size: 1.5rem;
            position: absolute;
            left: -15px;
            top: -2px;
        }

        .warning-box {
            background: rgba(255, 0, 60, 0.1);
            border-left: 4px solid var(--neon-red);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
        }

        .warning-box h4 {
            color: var(--neon-red);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
        }

        .info-box {
            background: rgba(255, 204, 0, 0.05);
            border-left: 4px solid var(--bright-yellow);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .info-box h4 {
            color: var(--bright-yellow);
            margin-bottom: 10px;
        }

        .terms-date {
            text-align: center;
            color: var(--gray-text);
            font-style: italic;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 204, 0, 0.3);
        }

        /* Footer */
        footer {
            background-color: #05050a;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 204, 0, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 40px;
        }

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

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text span {
            color: var(--bright-yellow);
        }

        .footer-about {
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-gold);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links ul li a {
            color: var(--gray-text);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links ul li a:hover {
            color: var(--bright-yellow);
        }

        .footer-links ul li a i {
            color: var(--neon-red);
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 204, 0, 0.2);
            color: var(--gray-text);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright-links a {
            margin-left: 25px;
            color: var(--gray-text);
            transition: color 0.3s ease;
        }

        .copyright-links a:hover {
            color: var(--bright-yellow);
        }

        .age-restriction {
            background-color: var(--neon-red);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: var(--shadow-glow);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                gap: 30px;
                transition: left 0.5s ease;
                backdrop-filter: blur(20px);
                z-index: 100;
            }
            
            nav ul.active {
                left: 0;
            }
            
            .nav-cta {
                margin-left: 0;
            }
            
            .terms-hero h1 {
                font-size: 2.5rem;
            }
            
            .terms-section {
                padding: 25px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .copyright {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .copyright-links a {
                margin: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .terms-hero h1 {
                font-size: 2rem;
            }
            
            .terms-section h2 {
                font-size: 1.7rem;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 80%, rgba(255, 0, 60, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.05) 0%, transparent 20%);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background: var(--gradient-red);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
        }

        .btn-yellow {
            background: var(--gradient-yellow);
            box-shadow: var(--shadow-glow-yellow);
        }

        .btn-yellow:hover {
            box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
        }

        .btn-gold {
            background: var(--gradient-gold);
            box-shadow: var(--shadow-glow-gold);
        }

        .btn-gold:hover {
            box-shadow: 0 10px 25px rgba(255, 153, 0, 0.5);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray-text);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 204, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            box-shadow: var(--shadow-glow-gold);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav ul li a {
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-gold);
            padding: 10px 25px;
            border-radius: 30px;
            margin-left: 30px;
            box-shadow: var(--shadow-glow-gold);
        }

        .nav-cta:hover {
            background: var(--gradient-red);
            box-shadow: var(--shadow-glow);
        }

        .nav-cta:hover::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
  :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffcc00;
            --yellow-dark: #e6b800;
            --dark-bg: #0a0a14;
            --darker-bg: #05050a;
            --light-text: #f5f5f5;
            --gray-text: #b0b0c0;
            --card-bg: rgba(20, 20, 30, 0.8);
            --gradient-red: linear-gradient(135deg, #ff003c, #cc002f);
            --gradient-yellow: linear-gradient(135deg, #ffcc00, #e6b800);
            --shadow-glow: 0 0 15px rgba(255, 0, 60, 0.5);
            --shadow-glow-yellow: 0 0 15px rgba(255, 204, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background: var(--gradient-red);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
        }

        .btn-yellow {
            background: var(--gradient-yellow);
            box-shadow: var(--shadow-glow-yellow);
        }

        .btn-yellow:hover {
            box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-red);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray-text);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-red);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav ul li a {
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-red);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-red);
            padding: 10px 25px;
            border-radius: 30px;
            margin-left: 30px;
            box-shadow: var(--shadow-glow);
        }

        .nav-cta:hover {
            background: var(--gradient-yellow);
            box-shadow: var(--shadow-glow-yellow);
        }

        .nav-cta:hover::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffcc00;
            --yellow-dark: #e6b800;
            --dark-bg: #0a0a14;
            --darker-bg: #05050a;
            --light-text: #f5f5f5;
            --gray-text: #b0b0c0;
            --card-bg: rgba(20, 20, 30, 0.8);
            --gradient-red: linear-gradient(135deg, #ff003c, #cc002f);
            --gradient-yellow: linear-gradient(135deg, #ffcc00, #e6b800);
            --shadow-glow: 0 0 15px rgba(255, 0, 60, 0.5);
            --shadow-glow-yellow: 0 0 15px rgba(255, 204, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

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

        .btn {
            display: inline-block;
            background: var(--gradient-red);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-red);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav ul li a {
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-red);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-red);
            padding: 10px 25px;
            border-radius: 30px;
            margin-left: 30px;
            box-shadow: var(--shadow-glow);
        }

        .nav-cta:hover {
            background: var(--gradient-yellow);
            box-shadow: var(--shadow-glow-yellow);
        }

        .nav-cta:hover::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }

        /* Policy Hero */
        .policy-hero {
            background: linear-gradient(rgba(5, 5, 10, 0.85), rgba(5, 5, 10, 0.9)), url('ban.png') no-repeat center center/cover;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 80px;
            border-bottom: 3px solid var(--neon-red);
        }

        .policy-hero h1 {
            font-size: 3.5rem;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            background: linear-gradient(to right, var(--bright-yellow), var(--neon-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Policy Content */
        .policy-content {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }

        .policy-section {
            margin-bottom: 50px;
            background: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid var(--neon-red);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .policy-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 25px;
            font-size: 2rem;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }

        .policy-section h3 {
            color: var(--gray-text);
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }

        .policy-section p {
            margin-bottom: 20px;
            color: var(--gray-text);
            line-height: 1.8;
        }

        .policy-section ul {
            margin-left: 25px;
            margin-bottom: 25px;
        }

        .policy-section li {
            margin-bottom: 12px;
            color: var(--gray-text);
            line-height: 1.7;
            position: relative;
            padding-left: 10px;
        }

        .policy-section li::before {
            content: '•';
            color: var(--neon-red);
            font-size: 1.5rem;
            position: absolute;
            left: -15px;
            top: -2px;
        }

        .important-note {
            background: rgba(255, 0, 60, 0.1);
            border-left: 4px solid var(--neon-red);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .important-note h4 {
            color: var(--neon-red);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .policy-date {
            text-align: center;
            color: var(--gray-text);
            font-style: italic;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.3);
        }

        /* Footer */
        footer {
            background-color: #05050a;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 40px;
        }

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

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text span {
            color: var(--bright-yellow);
        }

        .footer-about {
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-red);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links ul li a {
            color: var(--gray-text);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links ul li a:hover {
            color: var(--neon-red);
        }

        .footer-links ul li a i {
            color: var(--bright-yellow);
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
            color: var(--gray-text);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright-links a {
            margin-left: 25px;
            color: var(--gray-text);
            transition: color 0.3s ease;
        }

        .copyright-links a:hover {
            color: var(--neon-red);
        }

        .age-restriction {
            background-color: var(--neon-red);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: var(--shadow-glow);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                gap: 30px;
                transition: left 0.5s ease;
                backdrop-filter: blur(20px);
                z-index: 100;
            }
            
            nav ul.active {
                left: 0;
            }
            
            .nav-cta {
                margin-left: 0;
            }
            
            .policy-hero h1 {
                font-size: 2.5rem;
            }
            
            .policy-section {
                padding: 25px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .copyright {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .copyright-links a {
                margin: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .policy-hero h1 {
                font-size: 2rem;
            }
            
            .policy-section h2 {
                font-size: 1.7rem;
            }
        }
        /* Banner */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(5, 5, 10, 0.8), rgba(5, 5, 10, 0.9)), url('ban.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
        }

        .banner-content {
            max-width: 900px;
            padding: 30px;
            background: rgba(20, 20, 30, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 60, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
        }

        .banner h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
            background: linear-gradient(to right, var(--bright-yellow), var(--neon-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .banner p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            color: var(--gray-text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hotels Section */
        .hotels {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }

        .hotels-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .hotel-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 0, 60, 0.1);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .hotel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-red);
        }

        .hotel-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
            border-color: rgba(255, 0, 60, 0.3);
        }

        .hotel-img {
            height: 250px;
            background-color: #151525;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--bright-yellow);
            position: relative;
            overflow: hidden;
        }

        .hotel-img i {
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
        }

        .hotel-content {
            padding: 30px;
        }

        .hotel-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hotel-title i {
            color: var(--bright-yellow);
        }

        .hotel-description {
            color: var(--gray-text);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .hotel-features {
            margin-bottom: 30px;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--gray-text);
        }

        .feature i {
            color: var(--neon-red);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-red);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-img {
            flex: 1;
            height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ban.png') no-repeat center center/cover;
            border-radius: 20px;
            box-shadow: var(--shadow-glow);
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            text-align: left;
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .about-content h2::after {
            left: 0;
            transform: none;
        }

        .about-content p {
            color: var(--gray-text);
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--neon-red);
            margin-bottom: 5px;
        }

        .stat-text {
            color: var(--gray-text);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 0, 60, 0.3);
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }

        .faq-question i {
            color: var(--neon-red);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--gray-text);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding-bottom: 30px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Responsible Gambling */
        .responsible-gambling {
            padding: 80px 0;
            background-color: var(--dark-bg);
            border-top: 1px solid rgba(255, 0, 60, 0.2);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .rg-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .rg-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .rg-content p {
            color: var(--gray-text);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .rg-age {
            display: inline-flex;
            align-items: center;
            background: var(--gradient-red);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 20px;
            box-shadow: var(--shadow-glow);
        }

        /* Footer */
        footer {
            background-color: #05050a;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 40px;
        }

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

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text span {
            color: var(--bright-yellow);
        }

        .footer-about {
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-red);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links ul li a {
            color: var(--gray-text);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links ul li a:hover {
            color: var(--neon-red);
        }

        .footer-links ul li a i {
            color: var(--bright-yellow);
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
            color: var(--gray-text);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright-links a {
            margin-left: 25px;
            color: var(--gray-text);
            transition: color 0.3s ease;
        }

        .copyright-links a:hover {
            color: var(--neon-red);
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 600px;
            position: relative;
            transform: translateY(50px);
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 0, 60, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--gray-text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--neon-red);
        }

        .modal h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: white;
        }

        .modal p {
            color: var(--gray-text);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            background-color: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(255, 0, 60, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--neon-red);
            box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hotels-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-img {
                width: 100%;
            }
            
            .banner h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                gap: 30px;
                transition: left 0.5s ease;
                backdrop-filter: blur(20px);
                z-index: 100;
            }
            
            nav ul.active {
                left: 0;
            }
            
            .nav-cta {
                margin-left: 0;
            }
            
            .hotels-container {
                grid-template-columns: 1fr;
            }
            
            .banner h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .copyright {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .copyright-links a {
                margin: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .banner p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
        }
        /* Casino Banner */
        .casino-banner {
            height: 100vh;
            background: linear-gradient(rgba(5, 5, 10, 0.85), rgba(5, 5, 10, 0.9)), url('ban.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .casino-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .casino-banner-content {
            max-width: 900px;
            padding: 40px;
            background: rgba(20, 20, 30, 0.7);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            border: 1px solid rgba(255, 204, 0, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow-gold);
            position: relative;
            z-index: 1;
        }

        .casino-banner h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
            background: linear-gradient(to right, var(--bright-yellow), #ff9900, var(--neon-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 204, 0, 0.5), 0 0 20px rgba(255, 204, 0, 0.3);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.5), 0 0 40px rgba(255, 204, 0, 0.3);
            }
        }

        .casino-banner p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            color: var(--gray-text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Casino Hotels Section */
        .casino-hotels {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }

        .casino-hotels-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .casino-hotel-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 204, 0, 0.2);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .casino-hotel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-gold);
        }

        .casino-hotel-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow-gold);
            border-color: rgba(255, 204, 0, 0.4);
        }

        .casino-hotel-img {
            height: 250px;
            background-color: #151525;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--bright-yellow);
            position: relative;
            overflow: hidden;
        }

        .casino-hotel-img i {
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
        }

        .casino-hotel-content {
            padding: 30px;
        }

        .casino-hotel-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .casino-hotel-title i {
            color: var(--bright-yellow);
        }

        .casino-hotel-description {
            color: var(--gray-text);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .casino-features {
            margin-bottom: 30px;
        }

        .casino-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--gray-text);
        }

        .casino-feature i {
            color: var(--bright-yellow);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .gaming-highlights {
            background: rgba(255, 204, 0, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border-left: 3px solid var(--bright-yellow);
        }

        .gaming-highlights h4 {
            color: var(--bright-yellow);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .gaming-highlights ul {
            list-style: none;
        }

        .gaming-highlights li {
            color: var(--gray-text);
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .gaming-highlights li::before {
            content: '•';
            color: var(--bright-yellow);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Casino Info Section */
        .casino-info {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
        }

        .casino-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
        }

        .info-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }

        .info-content h2 {
            text-align: left;
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .info-content h2::after {
            left: 0;
            transform: none;
        }

        .info-content p {
            color: var(--gray-text);
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .info-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .info-stat {
            text-align: center;
            padding: 20px;
            background: rgba(255, 204, 0, 0.05);
            border-radius: 15px;
            flex: 1;
            min-width: 150px;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }

        .info-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--bright-yellow);
            margin-bottom: 5px;
        }

        .info-stat-text {
            color: var(--gray-text);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-img {
            height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ban.png') no-repeat center center/cover;
            border-radius: 20px;
            box-shadow: var(--shadow-glow-gold);
        }

        /* Responsible Gaming */
        .responsible-gaming {
            padding: 80px 0;
            background-color: var(--darker-bg);
            border-top: 1px solid rgba(255, 0, 60, 0.2);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .rg-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .rg-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .rg-content p {
            color: var(--gray-text);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .rg-age {
            display: inline-flex;
            align-items: center;
            background: var(--gradient-red);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 20px;
            box-shadow: var(--shadow-glow);
        }

        .rg-warning {
            background: rgba(255, 0, 60, 0.1);
            border-left: 4px solid var(--neon-red);
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            text-align: left;
        }

        .rg-warning h4 {
            color: var(--neon-red);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Footer */
        footer {
            background-color: #05050a;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 40px;
        }

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

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text span {
            color: var(--bright-yellow);
        }

        .footer-about {
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-gold);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links ul li a {
            color: var(--gray-text);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links ul li a:hover {
            color: var(--bright-yellow);
        }

        .footer-links ul li a i {
            color: var(--neon-red);
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 204, 0, 0.2);
            color: var(--gray-text);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright-links a {
            margin-left: 25px;
            color: var(--gray-text);
            transition: color 0.3s ease;
        }

        .copyright-links a:hover {
            color: var(--bright-yellow);
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 600px;
            position: relative;
            transform: translateY(50px);
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 204, 0, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow-gold);
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--gray-text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--bright-yellow);
        }

        .modal h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: white;
        }

        .modal p {
            color: var(--gray-text);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            background-color: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(255, 204, 0, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--bright-yellow);
            box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .casino-hotels-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .info-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .casino-banner h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                gap: 30px;
                transition: left 0.5s ease;
                backdrop-filter: blur(20px);
                z-index: 100;
            }
            
            nav ul.active {
                left: 0;
            }
            
            .nav-cta {
                margin-left: 0;
            }
            
            .casino-hotels-container {
                grid-template-columns: 1fr;
            }
            
            .casino-banner h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .copyright {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .copyright-links a {
                margin: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .casino-banner h1 {
                font-size: 2.2rem;
            }
            
            .casino-banner p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .info-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .info-stat {
                min-width: 100%;
            }
        }