 :root {
            --neon-purple: #9d4edd;
            --dark-purple: #7b2cbf;
            --bright-yellow: #ffd60a;
            --dark-yellow: #ffc300;
            --black: #10002b;
            --gray: #240046;
            --light-gray: #e0aaff;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-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 15px;
        }

        /* Header Styles */
        header {
            background-color: rgba(16, 0, 43, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-purple);
            box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
        }

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

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

        .logo-img {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: var(--black);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        nav a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }

        nav a:hover {
            color: var(--bright-yellow);
        }

        nav a.active {
            color: var(--bright-yellow);
            background-color: rgba(157, 78, 221, 0.2);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 80%;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--bright-yellow);
        }

        /* Page Header */
        .page-header {
            padding: 150px 0 80px;
            background: linear-gradient(rgba(16, 0, 43, 0.9), rgba(36, 0, 70, 0.95)), url('ban.png');
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .page-header p {
            font-size: 1.2rem;
            color: var(--light-gray);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
            background-color: var(--gray);
        }

        .content-container {
            background-color: var(--black);
            border-radius: 10px;
            padding: 60px;
            border: 2px solid var(--neon-purple);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .last-updated {
            color: var(--bright-yellow);
            font-style: italic;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--neon-purple);
        }

        .policy-section {
            margin-bottom: 50px;
        }

        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            padding-left: 20px;
            border-left: 4px solid var(--neon-purple);
        }

        .policy-section p {
            margin-bottom: 15px;
            color: var(--light-gray);
        }

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

        .policy-section li {
            margin-bottom: 10px;
            color: var(--light-gray);
            position: relative;
            padding-left: 10px;
        }

        .policy-section li::before {
            content: '•';
            color: var(--bright-yellow);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

        .contact-info {
            background-color: rgba(157, 78, 221, 0.1);
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
            border-left: 4px solid var(--bright-yellow);
        }

        .contact-info h3 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--gray);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-about p {
            color: var(--light-gray);
            margin-bottom: 20px;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--bright-yellow);
        }

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

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

        .footer-links a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            color: var(--light-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--neon-purple);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

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

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(157, 78, 221, 0.5);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 214, 10, 0.6);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.8rem;
            }
            
            .content-container {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: var(--black);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                border-top: 2px solid var(--neon-purple);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul li {
                width: 100%;
            }

            nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid var(--gray);
            }

            nav a:last-child {
                border-bottom: none;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .policy-section h2 {
                font-size: 1.5rem;
            }
            
            .content-container {
                padding: 30px 20px;
            }
            
            .logo-text {
                font-size: 22px;
            }
        }
           :root {
            --neon-purple: #9d4edd;
            --dark-purple: #7b2cbf;
            --bright-yellow: #ffd60a;
            --dark-yellow: #ffc300;
            --black: #10002b;
            --gray: #240046;
            --light-gray: #e0aaff;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-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 15px;
        }

        /* Header Styles */
        header {
            background-color: rgba(16, 0, 43, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-purple);
            box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
        }

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

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

        .logo-img {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: var(--black);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        nav a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }

        nav a:hover {
            color: var(--bright-yellow);
        }

        nav a.active {
            color: var(--bright-yellow);
            background-color: rgba(157, 78, 221, 0.2);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 80%;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--bright-yellow);
        }

        /* Page Header */
        .page-header {
            padding: 150px 0 80px;
            background: linear-gradient(rgba(16, 0, 43, 0.9), rgba(36, 0, 70, 0.95)), url('ban.png');
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--bright-yellow), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .page-header p {
            font-size: 1.2rem;
            color: var(--light-gray);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Warning Banner */
        .warning-banner {
            background: linear-gradient(90deg, var(--bright-yellow), var(--dark-yellow));
            color: var(--black);
            padding: 20px;
            text-align: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
            background-color: var(--gray);
        }

        .content-container {
            background-color: var(--black);
            border-radius: 10px;
            padding: 60px;
            border: 2px solid var(--bright-yellow);
            box-shadow: 0 10px 30px rgba(255, 214, 10, 0.1);
        }

        .rg-section {
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 214, 10, 0.3);
        }

        .rg-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .rg-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            padding-left: 20px;
            border-left: 4px solid var(--bright-yellow);
        }

        .rg-section p {
            margin-bottom: 15px;
            color: var(--light-gray);
        }

        .rg-section ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .rg-section li {
            margin-bottom: 10px;
            color: var(--light-gray);
            position: relative;
            padding-left: 10px;
        }

        .rg-section li::before {
            content: '•';
            color: var(--bright-yellow);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

        /* Resource Cards */
        .resource-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .resource-card {
            background-color: rgba(255, 214, 10, 0.1);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid var(--bright-yellow);
            transition: all 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 214, 10, 0.2);
        }

        .resource-icon {
            font-size: 40px;
            color: var(--bright-yellow);
            margin-bottom: 20px;
        }

        .resource-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--white);
        }

        .helpline {
            background-color: rgba(255, 214, 10, 0.2);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            text-align: center;
            border: 2px solid var(--bright-yellow);
        }

        .helpline-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--bright-yellow);
            margin: 10px 0;
            display: block;
        }

        .self-exclusion {
            background-color: rgba(157, 78, 221, 0.1);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            border: 1px solid var(--neon-purple);
        }

        .self-exclusion h3 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
        }

        /* Age Restriction */
        .age-restriction-large {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 150px;
            height: 150px;
            margin: 40px auto;
            background: linear-gradient(45deg, var(--bright-yellow), var(--neon-purple));
            color: var(--black);
            font-weight: 800;
            font-size: 3rem;
            border-radius: 50%;
            border: 5px solid var(--white);
            box-shadow: 0 0 20px rgba(255, 214, 10, 0.7);
        }

        /* Footer */
        footer {
            background-color: var(--gray);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-about p {
            color: var(--light-gray);
            margin-bottom: 20px;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--bright-yellow);
        }

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

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

        .footer-links a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            color: var(--light-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--neon-purple);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

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

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(157, 78, 221, 0.5);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 214, 10, 0.6);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.8rem;
            }
            
            .content-container {
                padding: 40px;
            }
            
            .helpline-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: var(--black);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                border-top: 2px solid var(--neon-purple);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul li {
                width: 100%;
            }

            nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid var(--gray);
            }

            nav a:last-child {
                border-bottom: none;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .resource-cards {
                grid-template-columns: 1fr;
            }
            
            .age-restriction-large {
                width: 120px;
                height: 120px;
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .rg-section h2 {
                font-size: 1.5rem;
            }
            
            .content-container {
                padding: 30px 20px;
            }
            
            .logo-text {
                font-size: 22px;
            }
            
            .helpline-number {
                font-size: 1.8rem;
            }
        }
                :root {
            --neon-purple: #9d4edd;
            --dark-purple: #7b2cbf;
            --bright-yellow: #ffd60a;
            --dark-yellow: #ffc300;
            --black: #10002b;
            --gray: #240046;
            --light-gray: #e0aaff;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-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 15px;
        }

        /* Header Styles */
        header {
            background-color: rgba(16, 0, 43, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-purple);
            box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
        }

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

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

        .logo-img {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: var(--black);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        nav a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }

        nav a:hover {
            color: var(--bright-yellow);
        }

        nav a.active {
            color: var(--bright-yellow);
            background-color: rgba(157, 78, 221, 0.2);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 80%;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--bright-yellow);
        }

        /* Banner Styles */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(16, 0, 43, 0.85), rgba(36, 0, 70, 0.9)), url('ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
        }

        .banner-content {
            max-width: 800px;
            padding: 30px;
            background-color: rgba(16, 0, 43, 0.7);
            border-radius: 10px;
            border: 2px solid var(--neon-purple);
            box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light-gray);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, var(--neon-purple), var(--dark-purple));
            color: var(--white);
            font-weight: 700;
            font-size: 18px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
        }

        .cta-button:hover {
            background: linear-gradient(90deg, var(--bright-yellow), var(--dark-yellow));
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 214, 10, 0.5);
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
            color: var(--bright-yellow);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            border-radius: 2px;
        }

        .hotels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .hotel-card {
            background-color: var(--black);
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--neon-purple);
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .hotel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(157, 78, 221, 0.4);
            border-color: var(--bright-yellow);
        }

        .hotel-img {
            height: 200px;
            background-color: var(--dark-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: var(--bright-yellow);
        }

        .hotel-content {
            padding: 30px;
        }

        .hotel-logo {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .hotel-name {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--white);
        }

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

        .hotel-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .hotel-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--bright-yellow);
            font-weight: bold;
        }

        .book-button {
            display: inline-block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--neon-purple), var(--dark-purple));
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
            border-radius: 5px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .book-button:hover {
            background: linear-gradient(90deg, var(--bright-yellow), var(--dark-yellow));
            color: var(--black);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--black);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--bright-yellow);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--light-gray);
        }

        .about-image {
            height: 400px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: var(--black);
            box-shadow: 0 15px 30px rgba(157, 78, 221, 0.3);
        }

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

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

        .faq-item {
            background-color: var(--black);
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid var(--neon-purple);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--white);
            background-color: rgba(157, 78, 221, 0.1);
        }

        .faq-question:hover {
            background-color: rgba(157, 78, 221, 0.2);
        }

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

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

        .faq-toggle {
            font-size: 20px;
            color: var(--bright-yellow);
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* Responsible Gambling */
        .responsible-gambling {
            padding: 80px 0;
            background-color: var(--black);
            text-align: center;
            border-top: 2px solid var(--neon-purple);
            border-bottom: 2px solid var(--neon-purple);
        }

        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .rg-icon {
            font-size: 80px;
            color: var(--bright-yellow);
            margin-bottom: 20px;
        }

        .rg-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }

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

        .age-restriction {
            display: inline-block;
            padding: 15px 25px;
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
            color: var(--black);
            font-weight: 800;
            font-size: 1.5rem;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background-color: var(--gray);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-purple), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-about p {
            color: var(--light-gray);
            margin-bottom: 20px;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--bright-yellow);
        }

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

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

        .footer-links a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            color: var(--light-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--neon-purple);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

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

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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-color: var(--black);
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            padding: 40px;
            border: 2px solid var(--neon-purple);
            box-shadow: 0 0 30px rgba(157, 78, 221, 0.7);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }

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

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .modal-header h2 {
            color: var(--bright-yellow);
            font-size: 1.8rem;
        }

        .close-modal {
            font-size: 28px;
            cursor: pointer;
            color: var(--light-gray);
            transition: color 0.3s ease;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--light-gray);
            font-weight: 500;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--gray);
            border: 1px solid var(--neon-purple);
            border-radius: 5px;
            color: var(--white);
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--bright-yellow);
        }

        .submit-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--neon-purple), var(--dark-purple));
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-button:hover {
            background: linear-gradient(90deg, var(--bright-yellow), var(--dark-yellow));
            color: var(--black);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .banner h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: var(--black);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                border-top: 2px solid var(--neon-purple);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul li {
                width: 100%;
            }

            nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid var(--gray);
            }

            nav a:last-child {
                border-bottom: none;
            }

            .banner h1 {
                font-size: 2.2rem;
            }

            .hotels-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .logo-text {
                font-size: 22px;
            }
        }
          .casino-banner {
            height: 100vh;
            background: linear-gradient(rgba(16, 0, 43, 0.85), rgba(36, 0, 70, 0.9)), url('ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
        }
        
        .casino-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--bright-yellow), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        /* Casino features */
        .casino-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: rgba(157, 78, 221, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border: 1px solid var(--neon-purple);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background-color: rgba(157, 78, 221, 0.2);
            border-color: var(--bright-yellow);
        }
        
        .feature-icon {
            font-size: 50px;
            color: var(--bright-yellow);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        /* Casino hotel specific styles */
        .casino-hotel-card .hotel-img {
            background: linear-gradient(45deg, var(--neon-purple), var(--bright-yellow));
        }
        
        .gaming-badge {
            display: inline-block;
            background-color: var(--bright-yellow);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .casino-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 15px;
            background-color: rgba(255, 214, 10, 0.1);
            border-radius: 8px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--bright-yellow);
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--light-gray);
        }
        
        /* Games section */
        .games-section {
            padding: 80px 0;
            background-color: var(--black);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .game-card {
            background-color: var(--gray);
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        
        .game-card:hover {
            border-color: var(--bright-yellow);
            transform: translateY(-5px);
        }
        
        .game-icon {
            font-size: 40px;
            color: var(--bright-yellow);
            margin-bottom: 15px;
        }
        
        /* Warning section */
        .warning-section {
            background-color: rgba(255, 214, 10, 0.1);
            border: 2px solid var(--bright-yellow);
            border-radius: 10px;
            padding: 30px;
            margin-top: 60px;
            text-align: center;
        }
        
        .warning-section h3 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .casino-banner h1 {
                font-size: 2.2rem;
            }
            
            .casino-stats {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .casino-banner h1 {
                font-size: 1.8rem;
            }
        }