/* ==========================================================================
   OrosGame.com - CSS Architecture
   Clean Light Theme | Solid Typography & High Contrast Colors
   Mobile First | Zero Div-Soup Support | Responsive down to 300px
   ========================================================================== */

/* --- Tokens & Design Variables --- */
:root {
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    
    --text-dark: #0f172a;
    --text-body: #1e293b;
    --text-muted: #475569;
    --text-light: #64748b;
    
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #0284c7;
    --accent: #d97706;
    
    --border-light: #e2e8f0;
    --border-focus: #818cf8;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 15px 35px rgba(15, 23, 42, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Accessibility Focus Ring */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 15px;
    background: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    z-index: 3000;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    transition: top 0.2s ease-out;
}

.skip-link:focus {
    top: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* --- Layout Containers --- */
.og-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.og-narrow-container {
    max-width: 840px;
}

.og-section {
    padding: 3rem 0;
}

.og-alt-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.text-center {
    text-align: center;
}

/* --- Section Titles & Badges --- */
.og-section-header {
    margin-bottom: 2rem;
}

.og-badge-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: #eef2ff;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid #c7d2fe;
    margin-bottom: 0.65rem;
}

.og-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.og-section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto;
}

/* --- Solid Buttons (No AI Gradient Slop) --- */
.og-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.og-btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.og-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
    color: #ffffff;
}

.og-btn-outline {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.og-btn-outline:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.og-btn-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #eef2ff;
    color: var(--primary);
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-md);
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.og-btn-card p {
    margin: 0;
    font-weight: 600;
}

.og-game-item.og-card-action,
.og-card-figure.og-card-action,
.og-card-title.og-card-action,
.og-btn-card.og-card-action {
    cursor: pointer;
}

.shdewenrhwer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
    /* opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden; */
}

.og-btn-card:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.og-btn-card svg {
    transition: transform var(--transition-fast);
}

.og-btn-card:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.og-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    height: 72px;
    display: flex;
    align-items: center;
}

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

.og-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.og-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.og-brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.og-brand-accent {
    color: var(--primary);
}

@media (min-width: 992px) {
    .burger-btn {
        display: none !important;
    }

    .og-nav {
        display: block;
    }

    .og-nav-list {
        display: flex;
        align-items: center;
        gap: 1.8rem;
    }

    .og-nav-link {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-body);
        padding: 0.5rem 0;
        position: relative;
    }

    .og-nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: width var(--transition-normal);
    }

    .og-nav-link:hover, .og-nav-link.og-active {
        color: var(--primary);
    }

    .og-nav-link:hover::after, .og-nav-link.og-active::after {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 36px;
        padding: 7px;
        background: var(--bg-alt);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-sm);
        cursor: pointer;
        z-index: 1001;
    }

    .burger-bar {
        width: 100%;
        height: 2.5px;
        background-color: var(--text-dark);
        border-radius: 2px;
        transition: all var(--transition-normal);
    }

    .burger-btn.active .burger-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger-btn.active .burger-bar:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .og-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: #ffffff;
        padding: 85px 1.75rem 2rem;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
        transition: right 0.35s ease;
        z-index: 1000;
    }

    .og-nav.active {
        right: 0;
    }

    .og-nav-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .og-nav-link {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text-dark);
        display: block;
        padding: 0.5rem 0.85rem;
        border-radius: var(--radius-sm);
    }

    .og-nav-link:hover, .og-nav-link.og-active {
        background-color: var(--bg-alt);
        color: var(--primary);
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        z-index: 999;
    }
}

/* ==========================================================================
   Page Headers (Subpages)
   ========================================================================== */
.og-page-header {
    background-color: var(--bg-alt);
    padding: 6.5rem 0 3rem;
    border-bottom: 1px solid var(--border-light);
}

.og-page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0.4rem;
    margin-bottom: 0.65rem;
}

.og-page-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.og-hero-section {
    position: relative;
    padding-top: 88px;
    padding-bottom: 2rem;
    background-color: #f8fafc;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.og-hero-bg-figure {
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0;
}

.og-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.96) contrast(1.02);
}

.og-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.96) 100%
    );
}

.og-hero-article {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.og-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.85rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.og-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.og-hero-lead {
    font-size: clamp(0.975rem, 1.8vw, 1.1rem);
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto 1.35rem;
    line-height: 1.5;
}

.og-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

/* ==========================================================================
   Games Grid Section
   ========================================================================== */
.og-games-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 992px) {
    .og-games-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.og-game-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.og-game-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-focus);
}

.og-card-figure {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f1f5f9;
    display: block;
    margin: 0;
}

.og-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.og-game-item:hover .og-card-img {
    transform: scale(1.05);
}

.og-card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.og-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.og-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.og-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.og-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px dashed var(--border-light);
    font-size: 0.775rem;
    color: var(--text-body);
    font-weight: 600;
}

.og-meta-pill {
    background-color: var(--bg-alt);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Editorial Feature Layout (No AI 3-card cliché)
   ========================================================================== */
.og-editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .og-editorial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.og-editorial-lead {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.1rem;
    line-height: 1.65;
}

.og-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.og-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--primary);
}

.og-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.og-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.og-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.og-feature-icon {
    font-size: 1.75rem;
    line-height: 1;
    padding: 0.6rem;
    background-color: #eef2ff;
    border-radius: var(--radius-md);
}

.og-feature-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.og-feature-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   FAQ Section (Dl / Dt / Dd semantic layout)
   ========================================================================== */
.og-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.og-faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.og-faq-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.og-faq-body {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Reviews List (Ul / Li / Blockquote / Address layout)
   ========================================================================== */
.og-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .og-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.og-review-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.og-review-rating {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    letter-spacing: 2px;
}

.og-review-quote {
    font-size: 0.925rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.og-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.og-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.og-author-info {
    display: flex;
    flex-direction: column;
}

.og-author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.og-author-city {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Form & Info
   ========================================================================== */
.og-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .og-contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.og-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.og-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.og-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #eef2ff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.og-contact-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.og-contact-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.og-contact-form {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.og-form-group {
    margin-bottom: 1.1rem;
}

.og-form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.og-form-input {
    width: 100%;
    padding: 0.8rem 0.95rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.og-form-input:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.og-form-textarea {
    resize: vertical;
}

.error-msg {
    display: none;
    font-size: 0.775rem;
    color: #dc2626;
    margin-top: 0.3rem;
}

.og-form-group.error .og-form-input {
    border-color: #dc2626;
}

.og-form-group.error .error-msg {
    display: block;
}

.form-feedback {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* ==========================================================================
   Legal Content Formatting
   ========================================================================== */
.og-legal-article h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.og-legal-article p {
    font-size: 0.975rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.og-legal-article ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.15rem;
}

.og-legal-article ul li {
    font-size: 0.975rem;
    color: var(--text-body);
    margin-bottom: 0.4rem;
}

.og-legal-article a {
    color: var(--primary);
    text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.og-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 3.5rem;
}

.og-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .og-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.og-footer-brand .og-brand-name {
    color: #ffffff;
}

.og-footer-text {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-top: 0.85rem;
    max-width: 360px;
}

.og-footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.og-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.og-footer-links a {
    font-size: 0.875rem;
    color: #94a3b8;
}

.og-footer-links a:hover {
    color: #ffffff;
}

.og-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 1.25rem 0;
    font-size: 0.825rem;
    color: #64748b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    z-index: 1500;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.65rem;
}

/* Mobile Responsive Tweaks */
@media (max-width: 768px) {
    .og-header {
        height: 56px;
    }
    .og-logo-img {
        width: 30px;
        height: 30px;
    }
    .og-brand-name {
        font-size: 1.15rem;
    }
    .og-hero-section {
        padding-top: 62px;
        padding-bottom: 0.5rem;
    }
    .og-hero-pill {
        font-size: 0.7rem;
        padding: 0.15rem 0.55rem;
        margin-bottom: 0.35rem;
    }
    .pulse-dot {
        width: 6px;
        height: 6px;
    }
    .og-hero-heading {
        font-size: 1.15rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    .og-hero-lead {
        font-size: 0.775rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .og-hero-actions {
        gap: 0.4rem;
    }
    .og-hero-actions .og-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
        border-radius: var(--radius-sm);
    }
    .og-section {
        padding: 0.5rem 0 0.85rem;
    }
    .og-section-header {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .og-badge-tag {
        font-size: 0.675rem;
        padding: 0.15rem 0.5rem;
        margin-bottom: 0.2rem;
    }
    .og-section-title {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
        line-height: 1.2;
    }
    .og-section-desc {
        font-size: 0.75rem;
        line-height: 1.25;
        margin-bottom: 0;
    }
    .og-games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem;
    }
    .og-game-item {
        border-radius: var(--radius-md);
    }
    .og-card-figure {
        aspect-ratio: 16 / 9;
    }
    .og-card-tag {
        font-size: 0.625rem;
        padding: 0.1rem 0.4rem;
        top: 5px;
        right: 5px;
    }
    .og-card-body {
        padding: 0.5rem;
    }
    .og-card-title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    .og-card-text {
        font-size: 0.725rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .og-card-meta {
        gap: 0.25rem;
        margin-bottom: 0.3rem;
    }
    .og-meta-pill {
        font-size: 0.625rem;
        padding: 0.1rem 0.35rem;
    }
    .og-btn-card {
        padding: 0.35rem 0.45rem;
        font-size: 0.75rem;
        margin-top: 0.2rem;
        gap: 0.25rem;
        border-radius: var(--radius-sm);
    }
    .og-btn-card p {
        font-size: 0.75rem;
    }
    .og-btn-card svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .og-container {
        padding: 0 0.5rem;
    }
    .og-games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    .og-section-desc {
        display: none;
    }
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
}
