/* ============================================
   Domendomen - Main Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors */
    --bg-primary: #0a0a1a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252542;
    
    /* Accent Colors */
    --accent-primary: #7C3AED;
    --accent-secondary: #A855F7;
    --accent-gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    --accent-gradient-hover: linear-gradient(135deg, #8B5CF6 0%, #C084FC 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b7280;
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-hover: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--bg-secondary);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   Header
   ============================================ */
.header {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-banner {
    background: var(--bg-secondary);
    background-image: url('../images/hero-mascot.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid #fff;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Games Section
   ============================================ */
.games {
    padding: 60px 0;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.games-title {
    font-size: 32px;
    font-weight: 800;
}

.games-see-more {
    padding: 10px 20px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
}

.games-see-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.games-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    aspect-ratio: 3/4;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    padding: 12px 32px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.game-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   Banner Sections
   ============================================ */
.banner {
    padding: 60px 0;
}

.banner-content {
    background: var(--bg-secondary);
    background-image: url('../images/no-purchase-mascot.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    background-image: url('../images/mobile-device.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.banner-title-small {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-secondary);
}

.banner-title-large {
    font-size: 72px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-description {
    font-size: 18px;
    color: #fff;
    max-width: 450px;
}

.banner-mascot,
.banner-device {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin: 0 auto;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 60px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.faq-intro-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-intro-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-accordion-item:hover {
    border-color: var(--border-color-hover);
}

.faq-accordion-item.active {
    background: var(--accent-gradient);
    border-color: transparent;
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-accordion-icon svg {
    transition: var(--transition-base);
}

.faq-accordion-item.active .faq-accordion-icon svg {
    transform: rotate(45deg);
}

.faq-accordion-question {
    font-size: 16px;
    font-weight: 600;
}

.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-answer {
    max-height: 200px;
}

.faq-accordion-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ============================================
   Responsible Gaming Section
   ============================================ */
.responsible-gaming {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.responsible-gaming-content {
    text-align: center;
}

.responsible-gaming-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.responsible-gaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.responsible-gaming-logo {
    opacity: 0.7;
    transition: var(--transition-base);
}

.responsible-gaming-logo:hover {
    opacity: 1;
}

.responsible-gaming-logo img {
    width: 120px;
    height: 48px;
    object-fit: contain;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-disclaimer {
    text-align: center;
    max-width: 700px;
}

.footer-disclaimer-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-disclaimer-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   Popup / Modal Styles
   ============================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
}

.popup-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.popup-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.popup-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.popup-buttons .btn {
    min-width: 140px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px;
    z-index: 9998;
    display: none;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.cookie-popup.active {
    display: block;
}

.cookie-popup-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-popup-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-popup-text {
    flex: 1;
}

.cookie-popup-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-popup-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-popup-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.cookie-popup-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-paragraph {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    border-radius: var(--radius-xl);
    max-width: 100%;
}

.about-values {
    margin-bottom: 80px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.about-value-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.about-value-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.about-value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-value-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-mission {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.about-mission .about-paragraph {
    max-width: 800px;
    margin: 0 auto 16px;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-form-section {
    padding: 60px 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.contact-form-description {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

.form-input,
.form-textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit-btn {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.contact-thank-you {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
}

.contact-thank-you.active {
    display: block;
}

.contact-form-content.hidden {
    display: none;
}

.thank-you-icon {
    margin-bottom: 24px;
}

.thank-you-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.thank-you-back-btn {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
}

.thank-you-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.contact-info {
    margin-top: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--border-color-hover);
}

.contact-info-icon {
    color: var(--accent-secondary);
    margin-bottom: 16px;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   Terms & Privacy Pages
   ============================================ */
.terms-content,
.privacy-content {
    padding: 60px 0;
}

.terms-intro,
.privacy-intro {
    margin-bottom: 48px;
}

.terms-updated,
.privacy-updated {
    font-size: 13px;
    color: var(--accent-secondary);
    margin-bottom: 16px;
}

.terms-intro-text,
.privacy-intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.terms-section,
.privacy-section {
    margin-bottom: 40px;
}

.terms-section-title,
.privacy-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.terms-section p,
.privacy-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-list,
.privacy-list {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-list li,
.privacy-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.terms-list li::before,
.privacy-list li::before {
    content: '•';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
}

.terms-footer,
.privacy-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.terms-footer-text,
.privacy-footer-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   Game Page Styles
   ============================================ */
.game-page-hero {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.game-page-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.game-iframe-section {
    padding: 40px 0;
}

.game-iframe-wrapper {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.game-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.game-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-info-section {
    padding: 60px 0;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.game-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.game-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.game-info-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.game-info-list {
    margin-top: 16px;
}

.game-info-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.game-info-list li::before {
    content: '✓';
    color: var(--accent-secondary);
    position: absolute;
    left: 0;
}

.related-games {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.related-games-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.related-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 10001;
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    display: block;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: var(--bg-card);
    color: var(--text-primary);
}

.mobile-menu-cta {
    display: block;
    margin-top: 24px;
    padding: 16px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-banner {
        padding: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        padding: 40px;
    }
    
    .banner-title-large {
        font-size: 56px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
    }
    
    .related-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 0 auto 24px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-mascot {
        max-height: 300px;
    }
    
    .games-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }
    
    .banner-title-small {
        font-size: 28px;
    }
    
    .banner-title-large {
        font-size: 48px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-description {
        margin: 0 auto;
    }
    
    .faq-intro-title {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .responsible-gaming-logos {
        gap: 24px;
    }
    
    .popup {
        padding: 32px 24px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-buttons .btn {
        width: 100%;
    }
    
    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    
    .cookie-popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .related-games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .banner-title-large {
        font-size: 36px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .game-page-title {
        font-size: 28px;
    }
}
