/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Dark Blue & Purple-Gray Background with Bright Accents */
    --bg-primary: #0a0e1a;
    --bg-secondary: #151b2d;
    --bg-tertiary: #1a1f35;
    --bg-card: #1e2540;
    --purple-gray: #2a2d45;
    --accent-yellow: #ffd700;
    --accent-orange: #ff6b00;
    --accent-red: #ff4500;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d4;
    --border-color: #3a3f5c;
    --gradient-primary: linear-gradient(135deg, #0a0e1a 0%, #151b2d 50%, #1a1f35 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ff4500 100%);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Istok Web', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Istok Web', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Cookie Banner ===== */
.js-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--accent-orange);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.js-cookie-banner.js-visible {
    transform: translateY(0);
}

.js-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.js-cookie-text {
    flex: 1;
    min-width: 250px;
    color: var(--text-secondary);
}

.js-cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.js-cookie-btn {
    padding: 12px 30px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.js-cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.js-cookie-link {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 500;
}

.js-cookie-link:hover {
    text-decoration: underline;
}

/* ===== Header ===== */
.js-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.js-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.js-logo-icon svg {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.js-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.js-nav-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}

.js-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.js-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.js-nav-link:hover {
    color: var(--text-primary);
}

.js-nav-link:hover::after {
    width: 100%;
}

.js-nav-active {
    color: var(--accent-yellow) !important;
}

.js-nav-btn {
    padding: 12px 30px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.js-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== Hero Section ===== */
.js-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.js-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../assets/images/hero-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.js-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.js-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.js-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.js-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.js-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.js-btn {
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.js-btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
}

.js-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.js-btn-secondary {
    background: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
}

.js-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* ===== Common Section Styles ===== */
.js-section {
    padding: 80px 20px;
}

.js-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.js-about {
    background: var(--bg-secondary);
}

.js-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.js-about-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===== Stats Section ===== */
.js-stats {
    background: var(--bg-tertiary);
}

.js-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.js-stat-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.js-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-glow);
}

.js-stat-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.js-stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Features Section ===== */
.js-features {
    background: var(--bg-secondary);
}

.js-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.js-feature-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.js-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-card);
}

.js-feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.js-feature-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Games Section ===== */
.js-games {
    background: var(--bg-tertiary);
}

.js-game-card {
    display: flex;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.js-game-card:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-card);
}

.js-game-image {
    flex-shrink: 0;
    width: 400px;
    height: 350px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-game-placeholder {
    font-size: 120px;
}

.js-game-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.js-game-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.js-game-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.js-btn-game {
    background: var(--gradient-accent);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.js-btn-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== CTA Section ===== */
.js-cta {
    background: var(--bg-secondary);
}

.js-cta-content {
    text-align: center;
    background-image: url(../assets/images/game-banner.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.js-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(10, 14, 26, 0.7);
    z-index: 1;
}

.js-cta-content > * {
    position: relative;
    z-index: 2;
}

.js-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.js-cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.js-btn-cta {
    background: var(--gradient-accent);
    color: white;
}

.js-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== Footer ===== */
.js-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.js-footer-main {
    padding: 40px 20px 30px;
}

.js-footer-disclaimer {
    background: rgba(255, 69, 0, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.js-footer-disclaimer strong {
    color: var(--accent-red);
}

.js-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.js-footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.js-footer-link:hover {
    color: var(--accent-yellow);
}

.js-footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px;
}

.js-copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .js-header-inner {
        gap: 15px;
    }

    .js-nav-wrap {
        gap: 15px;
    }

    .js-hero-title {
        font-size: 36px;
    }

    .js-hero-subtitle {
        font-size: 16px;
    }

    .js-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .js-game-card {
        flex-direction: column;
    }

    .js-game-image {
        width: 100%;
        height: 250px;
    }

    .js-stat-number {
        font-size: 48px;
    }

    .js-cta-content {
        padding: 30px;
    }
}

/* ===== About & Features Unified Section - Two Column Layout ===== */
.js-aboutfeatures {
    background: var(--bg-secondary);
}

.js-aboutfeatures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.js-aboutfeatures-left {
    display: flex;
    flex-direction: column;
}

.js-aboutfeatures-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.js-aboutfeatures-right {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
}

.js-aboutfeatures-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 20px 0 0 20px;
}

.js-aboutfeatures-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.js-aboutfeatures .js-features-grid {
    margin-top: 0;
}

/* Responsive for About Features */
@media (max-width: 900px) {
    .js-aboutfeatures-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .js-aboutfeatures-title {
        font-size: 32px;
        text-align: center;
    }

    .js-aboutfeatures-text {
        font-size: 16px;
    }
}

/* Smaller feature cards for aboutfeatures section */
.js-aboutfeatures .js-feature-card {
    padding: 20px 18px;
    border-radius: 12px;
}

.js-aboutfeatures .js-feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.js-aboutfeatures .js-feature-desc {
    font-size: 13px;
    line-height: 1.4;
}

.js-aboutfeatures .js-features-grid {
    gap: 15px;
}

/* Equal height columns */
.js-aboutfeatures-grid {
    align-items: stretch !important;
}

.js-aboutfeatures-left,
.js-aboutfeatures-right {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.js-aboutfeatures-right {
    justify-content: center;
}

/* Blur effect for hero background */
.js-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Logo image styling */
.js-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

/* Game image styling */
.js-game-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ===== Contact Page Styles ===== */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.js-contact-section {
    flex: 1;
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.js-contact-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.js-contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 50px;
}

.js-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== Contact Info ===== */
.js-contact-info {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.js-contact-info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.js-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.js-contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.js-contact-details {
    flex: 1;
}

.js-contact-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-yellow);
}

.js-contact-item-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Contact Form ===== */
.js-contact-form-wrap {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.js-contact-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

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

.js-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.js-form-input,
.js-form-textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.js-form-input:focus,
.js-form-textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.js-form-input::placeholder,
.js-form-textarea::placeholder {
    color: var(--text-secondary);
}

.js-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.js-btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.js-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== Responsive for Contact Page ===== */
@media (max-width: 900px) {
    .js-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .js-contact-title {
        font-size: 32px;
    }

    .js-contact-subtitle {
        font-size: 16px;
    }

    .js-contact-info,
    .js-contact-form-wrap {
        padding: 25px;
    }
}

/* ===== Notification Styles ===== */
.js-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 350px;
    max-width: 450px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.js-notification.js-notification-show {
    transform: translateX(0);
}

.js-notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.js-notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.js-notification-success .js-notification-icon {
    background: linear-gradient(135deg, #00c853, #00e676);
}

.js-notification-error .js-notification-icon {
    background: linear-gradient(135deg, #ff6b00, #ff4500);
}

.js-notification-message {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.4;
}

/* Responsive for notification */
@media (max-width: 600px) {
    .js-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
    }
}
/* ===== Game Page Styles ===== */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.js-game-section {
    flex: 1;
    padding: 40px 20px;
    background: var(--bg-secondary);
}

.js-iframe-container {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.js-iframe-wrapper {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.2);
}

.js-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: none;
}

/* ===== Responsive for Game Page ===== */
@media (max-width: 768px) {
    .js-iframe-wrapper iframe {
        height: 60vh;
        min-height: 400px;
    }
}
/* ===== Policy Pages Styles ===== */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.js-policy-section {
    flex: 1;
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.js-policy-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.js-policy-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 50px;
}

.js-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.js-policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.js-policy-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.js-policy-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.js-policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.js-policy-list li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.js-policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 20px;
    font-weight: bold;
}

/* ===== Cookie Types ===== */
.js-cookie-types {
    margin-top: 20px;
}

.js-cookie-type-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: 20px;
    margin-bottom: 10px;
}

.js-cookie-type-title:first-child {
    margin-top: 0;
}

/* ===== Cookie Table ===== */
.js-cookie-table {
    margin-top: 20px;
    overflow-x: auto;
}

.js-cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    border-radius: 10px;
    overflow: hidden;
}

.js-cookie-table thead {
    background: var(--gradient-accent);
}

.js-cookie-table th {
    padding: 15px;
    text-align: left;
    color: white;
    font-weight: 600;
}

.js-cookie-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.js-cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.js-cookie-table tbody tr:hover {
    background: var(--purple-gray);
}

/* ===== Responsive for Policy Pages ===== */
@media (max-width: 768px) {
    .js-policy-title {
        font-size: 32px;
    }

    .js-policy-content {
        padding: 30px;
    }

    .js-policy-heading {
        font-size: 20px;
    }

    .js-cookie-table th,
    .js-cookie-table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* ===== Burger Menu ===== */
.js-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.js-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.js-burger.js-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.js-burger.js-active span:nth-child(2) {
    opacity: 0;
}

.js-burger.js-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Mobile Menu ===== */
.js-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.js-mobile-menu.js-active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.js-mobile-nav .js-nav-link,
.js-mobile-nav .js-nav-btn {
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.js-mobile-nav .js-nav-link:hover,
.js-mobile-nav .js-nav-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-orange);
    transform: none;
    box-shadow: none;
}

.js-mobile-nav .js-nav-btn {
    background: var(--gradient-accent);
    border: none;
}

/* ===== Responsive with Burger Menu ===== */
@media (max-width: 768px) {
    .js-burger {
        display: flex;
    }

    .js-nav-wrap {
        display: none;
    }

    .js-mobile-menu.js-active .js-nav-wrap {
        display: flex;
    }
}

/* ===== Center Game Info on Mobile ===== */
@media (max-width: 768px) {
    .js-game-info {
        text-align: center;
        padding: 30px 20px;
    }

    .js-btn-game {
        width: 100%;
        text-align: center;
    }
}
