/* ========================================
   NAXSOL ENTERPRISES LTD - Main Stylesheet
   Digital Platform Analysis & Comparison
   Modern Editorial Design System
   ======================================== */

:root {
    --gameinfo-primary: #1e40af;
    --gameinfo-primary-dark: #1e3a8a;
    --gameinfo-primary-light: #3b82f6;
    --gameinfo-secondary: #0f766e;
    --gameinfo-secondary-light: #14b8a6;
    --gameinfo-background: #ffffff;
    --gameinfo-surface: #f8fafc;
    --gameinfo-surface-alt: #f1f5f9;
    --gameinfo-accent-dark: #1f2937;
    --gameinfo-accent-light: #f9fafb;
    --gameinfo-border: #e2e8f0;
    --gameinfo-border-dark: #cbd5e1;
    --gameinfo-text: #1f2937;
    --gameinfo-text-light: #6b7280;
    --gameinfo-text-lighter: #9ca3af;
    --gameinfo-success: #10b981;
    --gameinfo-warning: #f59e0b;
    --gameinfo-danger: #ef4444;
    --gameinfo-info: #0ea5e9;
    --gameinfo-spacing: 1rem;
    --gameinfo-radius: 12px;
    --gameinfo-radius-lg: 16px;
    --gameinfo-radius-sm: 6px;
    --gameinfo-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --gameinfo-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --gameinfo-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --gameinfo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gameinfo-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ========================================
   Reset & Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gameinfo-text);
    background-color: var(--gameinfo-background);
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--gameinfo-accent-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--gameinfo-text-light);
    line-height: 1.75;
}

a {
    color: var(--gameinfo-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--gameinfo-primary-dark);
    text-decoration: underline;
}

ul, ol {
    margin: 1.25rem 0;
    padding-left: 2.25rem;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--gameinfo-text-light);
}

/* ========================================
   Container
   ======================================== */

.gameinfo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .gameinfo-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
}

/* ========================================
   Header
   ======================================== */

.gameinfo-header {
    background-color: var(--gameinfo-background);
    border-bottom: 1px solid var(--gameinfo-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.gameinfo-header-wrapper .gameinfo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.gameinfo-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--gameinfo-primary);
    transition: color 0.3s ease;
}

.gameinfo-logo:hover {
    color: var(--gameinfo-primary-dark);
}

.gameinfo-logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gameinfo-primary) 0%, var(--gameinfo-primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gameinfo-radius);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--gameinfo-shadow-sm);
}

.gameinfo-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gameinfo-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gameinfo-text);
    transition: color 0.3s ease;
}

.gameinfo-menu-toggle:hover {
    color: var(--gameinfo-primary);
}

.gameinfo-hamburger,
.gameinfo-close {
    width: 24px;
    height: 24px;
}

.gameinfo-close {
    display: none;
}

.gameinfo-nav {
    display: flex;
    gap: 2.5rem;
}

.gameinfo-nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gameinfo-nav-list a {
    font-weight: 500;
    color: var(--gameinfo-text);
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.gameinfo-nav-list a:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gameinfo-primary), var(--gameinfo-secondary-light));
    transition: width 0.3s ease;
}

.gameinfo-nav-list a:hover {
    color: var(--gameinfo-primary);
}

.gameinfo-nav-list a:hover:after {
    width: 100%;
}

@media (max-width: 768px) {
    .gameinfo-menu-toggle {
        display: block;
    }
    
    .gameinfo-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--gameinfo-background);
        border-bottom: 1px solid var(--gameinfo-border);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .gameinfo-nav.active {
        max-height: 500px;
    }
    
    .gameinfo-nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .gameinfo-nav-list li {
        border-top: 1px solid var(--gameinfo-border);
        padding: 1rem 2rem;
        margin: 0;
    }
    
    .gameinfo-nav-list a {
        display: block;
    }
    
    .gameinfo-nav-list a:after {
        display: none;
    }
    
    .gameinfo-close {
        display: block;
    }
    
    .gameinfo-menu-toggle.active .gameinfo-hamburger {
        display: none;
    }
    
    .gameinfo-menu-toggle:not(.active) .gameinfo-close {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.gameinfo-hero {
    background: linear-gradient(135deg, var(--gameinfo-accent-light) 0%, var(--gameinfo-background) 100%);
    border-bottom: 1px solid var(--gameinfo-border);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.gameinfo-hero-bg {
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gameinfo-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.gameinfo-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(14, 184, 166, 0.1));
    color: var(--gameinfo-primary);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(30, 64, 175, 0.2);
    letter-spacing: 0.5px;
}

.gameinfo-hero-title {
    margin-bottom: 1.25rem;
}

.gameinfo-hero-lead {
    font-size: 1.3rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    color: var(--gameinfo-text-light);
    font-weight: 400;
}

.gameinfo-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.05));
    border-left: 4px solid var(--gameinfo-warning);
    padding: 1.5rem 1.75rem;
    border-radius: var(--gameinfo-radius);
    margin-bottom: 2.5rem;
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.7;
}

.gameinfo-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.gameinfo-feature {
    display: flex;
    gap: 1.25rem;
}

.gameinfo-feature-icon {
    color: var(--gameinfo-success);
    font-weight: 700;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.gameinfo-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gameinfo-feature p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gameinfo-hero {
        padding: 3.5rem 0;
    }
    
    .gameinfo-hero h1 {
        font-size: 1.75rem;
    }
    
    .gameinfo-hero-lead {
        font-size: 1.1rem;
    }
    
    .gameinfo-hero-features {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .gameinfo-feature {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gameinfo-hero {
        padding: 2.5rem 0;
    }
    
    .gameinfo-hero h1 {
        font-size: 1.5rem;
    }
    
    .gameinfo-hero-lead {
        font-size: 0.95rem;
    }
    
    .gameinfo-warning {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   Comparison Section (Platforms)
   ======================================== */

.gameinfo-comparacao {
    padding: 5rem 0;
    background-color: var(--gameinfo-background);
}

.gameinfo-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gameinfo-section-header h2 {
    margin-bottom: 1.25rem;
}

.gameinfo-section-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--gameinfo-text-light);
}

.gameinfo-operators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.gameinfo-operator-card {
    background-color: var(--gameinfo-surface);
    border: 1px solid var(--gameinfo-border);
    border-radius: var(--gameinfo-radius-lg);
    padding: 2.5rem;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--gameinfo-shadow-xs);
}

.gameinfo-operator-card:hover {
    box-shadow: var(--gameinfo-shadow-lg);
    border-color: var(--gameinfo-primary);
    transform: translateY(-4px);
}

.gameinfo-operator-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.gameinfo-operator-header img {
    width: 110px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
}

.gameinfo-operator-info {
    flex: 1;
}

.gameinfo-operator-info h3 {
    margin: 0;
    font-size: 1.3rem;
}

.gameinfo-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.gameinfo-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.gameinfo-rating-value {
    font-weight: 700;
    color: var(--gameinfo-primary);
}

.gameinfo-operator-description p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.gameinfo-operator-highlights {
    margin: 1.75rem 0;
}

.gameinfo-operator-highlights h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.gameinfo-operator-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gameinfo-operator-highlights li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.gameinfo-operator-highlights li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gameinfo-primary);
    font-weight: bold;
}

.gameinfo-comparison-specs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0;
    padding: 1.75rem;
    background-color: var(--gameinfo-background);
    border-radius: var(--gameinfo-radius);
}

.gameinfo-spec {
    text-align: center;
}

.gameinfo-spec-label {
    display: block;
    font-size: 0.82rem;
    color: var(--gameinfo-text-lighter);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gameinfo-spec-value {
    display: block;
    font-weight: 700;
    color: var(--gameinfo-primary);
    font-size: 1rem;
}

.gameinfo-operator-actions {
    margin-top: auto;
    padding-top: 1.75rem;
}

/* ========================================
   Buttons
   ======================================== */

.gameinfo-btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    border-radius: var(--gameinfo-radius-lg);
    font-weight: 600;
    text-align: center;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.gameinfo-btn-primary {
    background: linear-gradient(135deg, var(--gameinfo-primary) 0%, var(--gameinfo-primary-light) 100%);
    color: white;
    width: 100%;
    box-shadow: var(--gameinfo-shadow-sm);
}

.gameinfo-btn-primary:hover {
    background: linear-gradient(135deg, var(--gameinfo-primary-dark) 0%, var(--gameinfo-primary) 100%);
    box-shadow: var(--gameinfo-shadow-md);
    color: white;
    transform: translateY(-1px);
}

.gameinfo-btn-secondary {
    background-color: var(--gameinfo-surface);
    color: var(--gameinfo-primary);
    border: 1.5px solid var(--gameinfo-primary);
}

.gameinfo-btn-secondary:hover {
    background-color: var(--gameinfo-primary);
    color: white;
}

@media (max-width: 768px) {
    .gameinfo-comparacao {
        padding: 3rem 0;
    }
    
    .gameinfo-operators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gameinfo-comparison-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .gameinfo-operator-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    
    .gameinfo-operator-header img {
        width: 180px;
        height: 100px;
    }
}

/* ========================================
   Analysis Section
   ======================================== */

.gameinfo-analise {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gameinfo-surface-alt) 0%, var(--gameinfo-surface) 100%);
}

.gameinfo-analise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.gameinfo-analise-card {
    background-color: var(--gameinfo-background);
    padding: 2.25rem;
    border-radius: var(--gameinfo-radius-lg);
    border: 1px solid var(--gameinfo-border);
    transition: all 0.35s ease;
    box-shadow: var(--gameinfo-shadow-xs);
}

.gameinfo-analise-card:hover {
    box-shadow: var(--gameinfo-shadow-md);
    border-color: var(--gameinfo-primary);
    transform: translateY(-2px);
}

.gameinfo-analise-card h3 {
    margin-bottom: 1rem;
    color: var(--gameinfo-primary);
}

.gameinfo-analise-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.gameinfo-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gameinfo-criteria-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: var(--gameinfo-text-light);
}

.gameinfo-criteria-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gameinfo-secondary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .gameinfo-analise {
        padding: 3rem 0;
    }
    
    .gameinfo-analise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gameinfo-analise-card {
        padding: 1.75rem;
    }
}

/* ========================================
   About Section
   ======================================== */

.gameinfo-about {
    padding: 5rem 0;
    background-color: var(--gameinfo-background);
}

.gameinfo-about-content {
    max-width: 850px;
    margin: 0 auto;
}

.gameinfo-about-content h2 {
    margin-bottom: 1.75rem;
}

.gameinfo-about-content p {
    margin-bottom: 1.75rem;
    line-height: 1.85;
}

.gameinfo-methodology,
.gameinfo-commitment {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background-color: var(--gameinfo-surface);
    border-radius: var(--gameinfo-radius-lg);
    border-left: 5px solid var(--gameinfo-primary);
}

.gameinfo-methodology h3,
.gameinfo-commitment h3 {
    margin-bottom: 1.25rem;
}

.gameinfo-methodology ul,
.gameinfo-commitment ul {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .gameinfo-about {
        padding: 3rem 0;
    }
}

/* ========================================
   FAQ Section
   ======================================== */

.gameinfo-faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gameinfo-surface-alt) 0%, var(--gameinfo-surface) 100%);
}

.gameinfo-faq h2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gameinfo-faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.gameinfo-faq-item {
    border: 1px solid var(--gameinfo-border);
    border-radius: var(--gameinfo-radius-lg);
    margin-bottom: 1.25rem;
    overflow: hidden;
    background-color: var(--gameinfo-background);
    transition: all 0.3s ease;
}

.gameinfo-faq-item:hover {
    border-color: var(--gameinfo-primary);
    box-shadow: var(--gameinfo-shadow-sm);
}

.gameinfo-faq-button {
    width: 100%;
    padding: 1.75rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gameinfo-text);
    transition: all 0.3s ease;
}

.gameinfo-faq-button:hover {
    background-color: var(--gameinfo-surface);
    color: var(--gameinfo-primary);
}

.gameinfo-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
    color: var(--gameinfo-primary);
}

.gameinfo-faq-button[aria-expanded="true"] .gameinfo-faq-icon {
    transform: rotate(180deg);
}

.gameinfo-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.gameinfo-faq-button[aria-expanded="true"] ~ .gameinfo-faq-content {
    max-height: 600px;
}

.gameinfo-faq-content-inner {
    padding: 0 1.75rem 1.75rem 1.75rem;
    color: var(--gameinfo-text-light);
    line-height: 1.85;
}

@media (max-width: 768px) {
    .gameinfo-faq {
        padding: 3rem 0;
    }
    
    .gameinfo-faq-button {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   Footer
   ======================================== */

.gameinfo-footer {
    background: linear-gradient(170deg, var(--gameinfo-accent-dark) 0%, #0a0f1a 100%);
    color: #ffffff;
    padding: 0 0 2rem;
    margin-top: 5rem;
    position: relative;
}

/* Coloured accent bar across the top */
.gameinfo-footer-top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--gameinfo-accent) 0%, #4f8aff 50%, var(--gameinfo-accent) 100%);
    margin-bottom: 3.5rem;
}

/* Brand header above the grid */
.gameinfo-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gameinfo-footer-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gameinfo-accent) 0%, #4f8aff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.gameinfo-footer-brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.2rem;
    letter-spacing: 0.02em;
}

.gameinfo-footer-brand-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.4;
}

.gameinfo-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.25s ease;
    text-decoration: none;
}

.gameinfo-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.gameinfo-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gameinfo-footer-col h4 {
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gameinfo-footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

.gameinfo-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gameinfo-footer-col li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.gameinfo-footer-col li a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 1px;
}

.gameinfo-footer-col li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gameinfo-accent);
    transition: width 0.25s ease;
}

.gameinfo-footer-col li a:hover::after {
    width: 100%;
}

/* Support list inside a footer col */
.gameinfo-footer-support-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gameinfo-footer-support-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.gameinfo-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.gameinfo-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
}

.gameinfo-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gameinfo-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.gameinfo-footer-bottom-links a:hover {
    color: #ffffff;
}

.gameinfo-footer-bottom-links span {
    color: rgba(255, 255, 255, 0.25);
}

/* Footer Logos Section */
.gameinfo-footer-logos-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gameinfo-footer-logos-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.gameinfo-footer-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.gameinfo-footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gameinfo-radius-lg);
    padding: 1rem;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.gameinfo-footer-logo-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.gameinfo-footer-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.gameinfo-footer-logo-item:hover img {
    opacity: 1;
}

.gameinfo-footer-logo-item-no-link {
    cursor: default;
}

.gameinfo-footer-logo-item-no-link:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

@media (max-width: 768px) {
    .gameinfo-footer {
        padding: 0 0 1.5rem;
        margin-top: 3.5rem;
    }

    .gameinfo-footer-top-bar {
        margin-bottom: 2.5rem;
    }

    .gameinfo-footer-brand {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .gameinfo-footer-grid {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .gameinfo-footer-logos-grid {
        gap: 0.75rem;
    }
    
    .gameinfo-footer-logo-item {
        width: 120px;
        height: 56px;
        padding: 0.85rem;
    }

    .gameinfo-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gameinfo-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Popups
   ======================================== */

#age-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--gameinfo-border);
    border-radius: var(--gameinfo-radius-lg);
    box-shadow: var(--gameinfo-shadow-xl);
    padding: 1.75rem;
    max-width: 320px;
    z-index: 999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    animation: slideInUp 0.4s ease-out;
}

#age-popup h3 {
    font-size: 1.15rem;
    color: var(--gameinfo-text);
    margin: 0 0 0.85rem 0;
    font-family: 'Georgia', serif;
}

#age-popup p {
    font-size: 0.9rem;
    color: var(--gameinfo-text-light);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
}

.age-popup-buttons {
    display: flex;
    gap: 0.85rem;
}

.age-popup-btn {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: var(--gameinfo-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.age-popup-btn-accept {
    background: linear-gradient(135deg, var(--gameinfo-primary) 0%, var(--gameinfo-primary-light) 100%);
    color: white;
}

.age-popup-btn-accept:hover {
    background: linear-gradient(135deg, var(--gameinfo-primary-dark) 0%, var(--gameinfo-primary) 100%);
    box-shadow: var(--gameinfo-shadow-md);
}

.age-popup-btn-decline {
    background-color: var(--gameinfo-surface);
    color: var(--gameinfo-text);
    border: 1px solid var(--gameinfo-border);
}

.age-popup-btn-decline:hover {
    background-color: var(--gameinfo-border);
}

#age-popup.hidden {
    display: none;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */

#cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid var(--gameinfo-border);
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
    padding: 1.75rem 2rem;
    z-index: 998;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    animation: slideInUp 0.4s ease-out;
}

#cookie-popup.hidden {
    display: none;
}

#cookie-popup p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gameinfo-text);
    line-height: 1.7;
}

#cookie-popup a {
    color: var(--gameinfo-primary);
    font-weight: 600;
    text-decoration: underline;
}

#cookie-popup a:hover {
    color: var(--gameinfo-primary-dark);
}

.cookie-popup-btn {
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--gameinfo-primary) 0%, var(--gameinfo-primary-light) 100%);
    color: white;
    border: none;
    border-radius: var(--gameinfo-radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: var(--gameinfo-shadow-sm);
}

.cookie-popup-btn:hover {
    background: linear-gradient(135deg, var(--gameinfo-primary-dark) 0%, var(--gameinfo-primary) 100%);
    box-shadow: var(--gameinfo-shadow-md);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.gameinfo-mt-1-5 {
    margin-top: 1.5rem;
}

.gameinfo-mt-2 {
    margin-top: 2rem;
}

.gameinfo-mt-3 {
    margin-top: 3rem;
}

.gameinfo-text-large {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--gameinfo-text);
}

.gameinfo-text-large-spaced {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--gameinfo-text);
    margin-top: 2rem;
}

.gameinfo-link-primary {
    color: var(--gameinfo-primary);
    font-weight: 600;
}

.gameinfo-content-centered {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
}

.gameinfo-content-wide {
    max-width: 900px;
}

.gameinfo-content-box {
    max-width: 750px;
}

.gameinfo-cta-section {
    margin-top: 3.5rem;
    text-align: center;
}

.gameinfo-btn-large {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
}

/* ========================================
   Blog Styles
   ======================================== */

.gameinfo-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.gameinfo-blog-card {
    background: var(--gameinfo-surface);
    border: 1px solid var(--gameinfo-border);
    border-radius: var(--gameinfo-radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--gameinfo-shadow-xs);
}

.gameinfo-blog-card:hover {
    box-shadow: var(--gameinfo-shadow-md);
    transform: translateY(-2px);
    border-color: var(--gameinfo-primary);
}

.gameinfo-blog-card-content {
    padding: 2.25rem;
}

.gameinfo-blog-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--gameinfo-primary) 0%, var(--gameinfo-primary-light) 100%);
    color: white;
    padding: 0.5rem 0.95rem;
    border-radius: var(--gameinfo-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.gameinfo-blog-title {
    margin: 1.25rem 0;
    color: var(--gameinfo-accent-dark);
    line-height: 1.4;
}

.gameinfo-blog-excerpt {
    color: var(--gameinfo-text-light);
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

.gameinfo-blog-link {
    color: var(--gameinfo-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.gameinfo-blog-link:hover {
    color: var(--gameinfo-primary-dark);
}

/* ========================================
   Responsive Media Queries
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    #cookie-popup {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-popup-btn {
        width: 100%;
    }
    
    .age-popup-buttons {
        flex-direction: column;
    }
    
    .age-popup-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #age-popup {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .gameinfo-header,
    .gameinfo-footer,
    .gameinfo-menu-toggle {
        display: none;
    }
}
