 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #f8fafc;
            transition: color 0.3s;
        }

        a:hover {
            color: #60a5fa;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #60a5fa;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            font-size: 1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Content Styles */
        .content-section {
            padding: 120px 0 80px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .page-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            margin: 15px auto;
            border-radius: 2px;
        }

        .content-card {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .content-card h2 {
            margin: 30px 0 15px;
            color: #60a5fa;
        }

        .content-card h2:first-child {
            margin-top: 0;
        }

        .content-card p {
            margin-bottom: 15px;
        }

        .content-card ul, .content-card ol {
            margin: 15px 0 15px 20px;
        }

        .content-card li {
            margin-bottom: 8px;
        }

        .back-btn {
            margin-top: 30px;
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: #0f172a;
            padding: 40px 0 20px;
            border-top: 1px solid #334155;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .age-restriction {
            background-color: #ef4444;
            color: white;
            padding: 5px 10px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.8rem;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #0f172a;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 15px 0;
            }

            .page-title {
                font-size: 2rem;
            }

            .content-card {
                padding: 20px;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #f8fafc;
            transition: color 0.3s;
        }

        a:hover {
            color: #60a5fa;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #60a5fa;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            font-size: 1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Content Styles */
        .content-section {
            padding: 120px 0 80px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .page-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            margin: 15px auto;
            border-radius: 2px;
        }

        .content-card {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .content-card h2 {
            margin: 30px 0 15px;
            color: #60a5fa;
        }

        .content-card h2:first-child {
            margin-top: 0;
        }

        .content-card p {
            margin-bottom: 15px;
        }

        .content-card ul, .content-card ol {
            margin: 15px 0 15px 20px;
        }

        .content-card li {
            margin-bottom: 8px;
        }

        .back-btn {
            margin-top: 30px;
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: #0f172a;
            padding: 40px 0 20px;
            border-top: 1px solid #334155;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .age-restriction {
            background-color: #ef4444;
            color: white;
            padding: 5px 10px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.8rem;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #0f172a;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 15px 0;
            }

            .page-title {
                font-size: 2rem;
            }

            .content-card {
                padding: 20px;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #f8fafc;
            transition: color 0.3s;
        }

        a:hover {
            color: #60a5fa;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            margin: 15px auto;
            border-radius: 2px;
        }

        /* Header Styles */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #60a5fa;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            font-size: 1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
        }

        .hero-content {
            max-width: 700px;
            text-align: center;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #3b82f6;
        }

        /* Features Section */
        .features {
            background-color: #1e293b;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: #334155;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #60a5fa;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Games Section */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .game-card {
            background-color: #1e293b;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-10px);
        }

        .game-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .game-content {
            padding: 20px;
        }

        .game-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Contact Form */
        .contact {
            background-color: #1e293b;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #334155;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: white;
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            border-color: #3b82f6;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: #0f172a;
            padding: 40px 0 20px;
            border-top: 1px solid #334155;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .age-restriction {
            background-color: #ef4444;
            color: white;
            padding: 5px 10px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.8rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #0f172a;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-form {
                padding: 20px;
            }
        }

        /* Age Verification Popup */
        .age-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .age-popup-content {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .age-popup-content h2 {
            color: #60a5fa;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .age-popup-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .age-popup-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        /* Cookie Consent Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 500px;
            background-color: #1e293b;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: flex;
            align-items: center;
        }

        .cookie-popup-content {
            width: 100%;
        }

        .cookie-popup-content p {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .cookie-popup-btns {
            display: flex;
            gap: 10px;
        }

        .cookie-popup-btns .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* Logos Grid Section */
        .logos-section {
            padding: 60px 0;
            background-color: #1e293b;
        }

        .logos-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: scale(1.1);
        }

        .logo-item img {
            max-width: 150px;
            height: auto;
            filter: brightness(0.8);
            transition: filter 0.3s ease;
        }

        .logo-item:hover img {
            filter: brightness(1);
        }

        @media (max-width: 768px) {
            .cookie-popup {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }

            .age-popup-content {
                padding: 30px 20px;
                margin: 20px;
            }

            .age-popup-btns {
                flex-direction: column;
            }

            .logos-grid {
                gap: 20px;
            }
        }

        /* Game Page Styles */
        .game-page-section {
            padding: 120px 0 60px;
        }

        .game-page-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 40px;
            color: #60a5fa;
        }

        .game-wrapper {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }

        .game-wrapper iframe {
            border-radius: 5px;
            display: block;
            width: 100%;
        }

        .how-to-play-section {
            background-color: #1e293b;
            padding: 60px 0;
        }

        .game-info-section {
            padding: 60px 0;
        }

        @media (max-width: 768px) {
            .game-page-title {
                font-size: 2rem;
            }

            .game-wrapper {
                padding: 10px;
            }

            .game-wrapper iframe {
                height: 500px !important;
            }
        }

        /* Responsible Gaming Section */
        .responsible-gaming-section {
            background-color: #1e293b;
            padding: 40px 0;
            border-top: 1px solid #334155;
        }

        .responsible-gaming-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .responsible-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .responsible-logo-item img {
            opacity: 0.8;
            transition: all 0.3s ease;
            filter: grayscale(20%);
        }

        .responsible-logo-item:hover {
            transform: scale(1.05);
            text-decoration: none;
        }

        .responsible-logo-item:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

        @media (max-width: 768px) {
            .responsible-gaming-logos {
                gap: 20px;
            }

            .responsible-logo-item img {
                max-width: 120px;
            }

            .responsible-logo-item img[width="80"] {
                max-width: 60px;
            }
        }

        /* Footer Legal Info */
        .footer-legal-info {
            background-color: #1e293b;
            padding: 20px 0;
            border-bottom: 1px solid #334155;
            text-align: center;
        }

        .footer-legal-info .legal-company {
            font-size: 1.1rem;
            font-weight: 600;
            color: #60a5fa;
            margin-bottom: 8px;
        }

        .footer-legal-info .legal-address,
        .footer-legal-info .legal-contact {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-bottom: 5px;
        }

        .footer-legal-info .legal-contact a {
            color: #60a5fa;
        }

        .footer-legal-info .legal-contact a:hover {
            color: #93c5fd;
        }

        @media (max-width: 768px) {
            .footer-legal-info {
                padding: 15px 10px;
            }

            .footer-legal-info .legal-company {
                font-size: 1rem;
            }

            .footer-legal-info .legal-address,
            .footer-legal-info .legal-contact {
                font-size: 0.85rem;
            }
        }

        /* Privacy Checkbox in Forms */
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }

        .form-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            accent-color: #3b82f6;
            cursor: pointer;
            flex-shrink: 0;
        }

        .form-checkbox label {
            font-size: 0.9rem;
            color: #94a3b8;
            cursor: pointer;
            line-height: 1.5;
        }

        .form-checkbox label a {
            color: #60a5fa;
            text-decoration: underline;
        }

        .form-checkbox label a:hover {
            color: #93c5fd;
        }

        @media (max-width: 768px) {
            .form-checkbox label {
                font-size: 0.85rem;
            }
        }