﻿/* ============================================
   LaAndLa Game Portal - Core Styles
   Warm & Vibrant Gaming Theme
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --laandla-bg-deep: #fef9f0;
    --laandla-bg-dark: #ffffff;
    --laandla-bg-card: #ffffff;
    --laandla-bg-card-hover: #fff8f0;
    --laandla-bg-elevated: #fef3e2;
    --laandla-surface: #fde8d0;
    --laandla-accent: #f97316;
    --laandla-accent-dim: rgba(249, 115, 22, 0.08);
    --laandla-accent2: #eab308;
    --laandla-accent2-dim: rgba(234, 179, 8, 0.08);
    --laandla-accent3: #ec4899;
    --laandla-accent3-dim: rgba(236, 72, 153, 0.08);
    --laandla-text: #1c1917;
    --laandla-text-secondary: #57534e;
    --laandla-text-muted: #a8a29e;
    --laandla-border: #fde8d0;
    --laandla-border-hover: rgba(249, 115, 22, 0.3);
    --laandla-glow: 0 2px 16px rgba(249, 115, 22, 0.1);
    --laandla-radius: 14px;
    --laandla-radius-sm: 10px;
    --laandla-radius-lg: 20px;
    --laandla-transition: all 0.25s ease;
    --laandla-max-width: 1360px;
    --laandla-header-height: 62px;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    color: var(--laandla-text);
    background-color: var(--laandla-bg-deep);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--laandla-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   Container
   ============================================ */
.laandla-container {
    width: 100%;
    max-width: var(--laandla-max-width);
    margin: 0 auto;
    padding: 0 22px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.laandla-header {
    width: 100%;
    background: var(--laandla-bg-dark);
    border-bottom: 1px solid var(--laandla-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.laandla-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--laandla-header-height);
    max-width: var(--laandla-max-width);
    margin: 0 auto;
    padding: 0 22px;
}

.laandla-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.laandla-nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--laandla-bg-card);
    padding: 2px;
}

.laandla-nav-title {
    color: var(--laandla-text);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.laandla-nav-title span {
    color: var(--laandla-accent);
}

.laandla-nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: var(--laandla-bg-card);
    border-radius: var(--laandla-radius-sm);
}

.laandla-nav-toggle-icon {
    width: 18px;
    height: 2px;
    background: var(--laandla-text);
    position: relative;
}

.laandla-nav-toggle-icon::before,
.laandla-nav-toggle-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--laandla-text);
    left: 0;
}

.laandla-nav-toggle-icon::before { top: -5px; }
.laandla-nav-toggle-icon::after { top: 5px; }

.laandla-nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.laandla-nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    color: var(--laandla-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.laandla-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--laandla-accent);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.laandla-nav-link:hover {
    color: var(--laandla-text);
}

.laandla-nav-link:hover::after,
.laandla-nav-link.is-active::after {
    transform: scaleX(1);
}

.laandla-nav-link.is-active {
    color: var(--laandla-accent);
}

/* ============================================
   Main Content
   ============================================ */
.laandla-main {
    padding: 28px 0 48px;
    min-height: calc(100vh - var(--laandla-header-height) - 180px);
}

.laandla-section {
    margin-bottom: 40px;
}

/* ============================================
   Section Header
   ============================================ */
.laandla-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.laandla-section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.laandla-section-tag {
    display: inline-block;
    background: var(--laandla-accent-dim);
    color: var(--laandla-accent);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.laandla-section-title {
    color: var(--laandla-text);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.laandla-section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--laandla-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    transition: var(--laandla-transition);
}

.laandla-section-more:hover {
    color: var(--laandla-accent);
    background: var(--laandla-accent-dim);
}

/* ============================================
   Category Strip
   ============================================ */
.laandla-category-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
    padding: 10px 16px;
    background: var(--laandla-bg-card);
    border-radius: var(--laandla-radius);
    border: 1px solid var(--laandla-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.laandla-category-bar::-webkit-scrollbar { display: none; }

.laandla-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: transparent;
    border: 1px solid var(--laandla-border);
    border-radius: 20px;
    transition: var(--laandla-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.laandla-cat-chip:hover {
    background: var(--laandla-accent-dim);
    border-color: var(--laandla-accent);
}

.laandla-cat-icon { font-size: 0.9rem; }

.laandla-cat-label {
    color: var(--laandla-text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
}

.laandla-cat-chip:hover .laandla-cat-label {
    color: var(--laandla-accent);
}

/* ============================================
   Game Grid - 6 Columns (changed from 5)
   ============================================ */
.laandla-game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.laandla-game-grid--compact {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

/* ============================================
   Game Card - New Layout
   ============================================ */
.laandla-game-card {
    position: relative;
    border-radius: var(--laandla-radius);
    overflow: hidden;
    transition: var(--laandla-transition);
    display: block;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.laandla-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--laandla-accent);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.15);
}

.laandla-game-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--laandla-bg-dark);
}

.laandla-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.laandla-game-card:hover .laandla-game-thumb img {
    transform: scale(1.08);
}

.laandla-game-thumb::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.laandla-game-thumb::before {
    content: "\25B6";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    z-index: 3;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.laandla-game-card:hover .laandla-game-thumb::before {
    transform: translate(-50%, -50%) scale(1);
}

.laandla-game-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.laandla-tag-boys { background: #f97316; }
.laandla-tag-girls { background: #ec4899; }
.laandla-tag-puzzle { background: var(--laandla-accent); color: #ffffff; }
.laandla-tag-sports { background: var(--laandla-accent2); }
.laandla-tag-strategy { background: #a855f7; }
.laandla-tag-casual { background: var(--laandla-accent3); color: #ffffff; }
.laandla-tag-popular { background: linear-gradient(135deg, var(--laandla-accent), var(--laandla-accent2)); }
.laandla-tag-latest { background: linear-gradient(135deg, var(--laandla-accent), var(--laandla-accent3)); color: #ffffff; }
.laandla-tag-motive { background: linear-gradient(135deg, var(--laandla-accent2), #a855f7); }

.laandla-game-mark {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    z-index: 2;
    background: rgba(0,0,0,0.4);
    padding: 2px 7px;
    border-radius: 4px;
}

.laandla-game-body {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: var(--laandla-bg-card);
}

.laandla-game-name {
    color: var(--laandla-text);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.laandla-game-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px 10px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.laandla-game-desc {
    color: var(--laandla-text-muted);
    font-size: 0.68rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.laandla-game-card--cover .laandla-game-body { display: none; }
.laandla-game-card--cover .laandla-game-thumb { aspect-ratio: 4 / 3; }

.laandla-game-card--compact { border-radius: var(--laandla-radius-sm); }
.laandla-game-card--compact .laandla-game-thumb { aspect-ratio: 4 / 3; }
.laandla-game-card--compact .laandla-game-name {
    font-size: 0.72rem;
    -webkit-line-clamp: 1;
}

/* ============================================
   Horizontal Scroll Row
   ============================================ */
.laandla-scroll-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.laandla-scroll-row::-webkit-scrollbar { display: none; }

.laandla-scroll-row .laandla-game-card {
    min-width: 190px;
    max-width: 190px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ============================================
   Featured Spotlight
   ============================================ */
.laandla-featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 14px;
}

.laandla-featured-grid .laandla-game-card:first-child {
    grid-row: span 2;
}

.laandla-featured-grid .laandla-game-card:first-child .laandla-game-thumb {
    aspect-ratio: 3 / 4;
}

/* ============================================
   Spotlight Grid (Index)
   ============================================ */
.laandla-spotlight-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    gap: 14px;
    margin-bottom: 36px;
}

.laandla-spotlight-main {
    grid-column: 1;
    grid-row: span 2;
    position: relative;
    border-radius: var(--laandla-radius-lg);
    overflow: hidden;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    transition: var(--laandla-transition);
    min-height: 280px;
}

.laandla-spotlight-main:hover {
    border-color: var(--laandla-accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.laandla-spotlight-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.laandla-spotlight-main:hover img {
    transform: scale(1.04);
}

.laandla-spotlight-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1;
}

.laandla-spotlight-main-tag {
    display: inline-block;
    background: var(--laandla-accent);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.laandla-spotlight-main-title {
    color: var(--laandla-text);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.laandla-spotlight-main-desc {
    color: var(--laandla-text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.laandla-spotlight-side {
    position: relative;
    border-radius: var(--laandla-radius);
    overflow: hidden;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    transition: var(--laandla-transition);
}

.laandla-spotlight-side:hover {
    border-color: var(--laandla-border-hover);
    transform: translateY(-2px);
}

.laandla-spotlight-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.laandla-spotlight-side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    z-index: 1;
}

.laandla-spotlight-side-title {
    color: var(--laandla-text);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   Horizontal Scroll Section (Index)
   ============================================ */
.laandla-index-scroll-section {
    margin-bottom: 36px;
}

.laandla-index-scroll-section .laandla-scroll-row {
    padding-bottom: 10px;
}

/* ============================================
   Features Strip
   ============================================ */
.laandla-features-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: var(--laandla-bg-card);
    border-radius: var(--laandla-radius-lg);
    border: 1px solid var(--laandla-border);
}

.laandla-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
}

.laandla-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--laandla-accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.laandla-feature-text h4 {
    color: var(--laandla-text);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.laandla-feature-text p {
    color: var(--laandla-text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

/* ============================================
   Editor's Pick Row
   ============================================ */
.laandla-editors-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.laandla-editor-card {
    display: flex;
    flex-direction: row;
    border-radius: var(--laandla-radius);
    overflow: hidden;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    transition: var(--laandla-transition);
}

.laandla-editor-card:hover {
    border-color: var(--laandla-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.laandla-editor-card-img {
    width: 180px;
    min-height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.laandla-editor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.laandla-editor-card:hover .laandla-editor-card-img img {
    transform: scale(1.05);
}

.laandla-editor-card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.laandla-editor-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--laandla-accent);
    font-size: 0.68rem;
    font-weight: 700;
}

.laandla-editor-card-title {
    color: var(--laandla-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.laandla-editor-card-desc {
    color: var(--laandla-text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   Category Tabs
   ============================================ */
.laandla-tab-section {
    margin-bottom: 36px;
}

.laandla-tab-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--laandla-border);
    padding-bottom: 0;
}

.laandla-tab-btn {
    padding: 10px 18px;
    color: var(--laandla-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--laandla-transition);
    margin-bottom: -1px;
    background: none;
    cursor: pointer;
}

.laandla-tab-btn:hover {
    color: var(--laandla-text);
}

.laandla-tab-btn.is-active {
    color: var(--laandla-accent);
    border-bottom-color: var(--laandla-accent);
}

.laandla-tab-panel {
    display: none;
}

.laandla-tab-panel.is-active {
    display: grid;
}

.laandla-tab-panel.laandla-game-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

/* ============================================
   Loading State
   ============================================ */
.laandla-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--laandla-text-muted);
    font-size: 0.88rem;
}

.laandla-loading::after {
    content: "...";
    animation: laandla-dots 1.5s steps(4, end) infinite;
}

@keyframes laandla-dots {
    0%, 20% { content: ""; }
    40% { content: "."; }
    60% { content: ".."; }
    80%, 100% { content: "..."; }
}

/* ============================================
   Channel Page Header
   ============================================ */
.laandla-channel-header {
    padding: 16px 0 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--laandla-border);
}

.laandla-channel-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.laandla-channel-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--laandla-accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.laandla-channel-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--laandla-text);
    margin-bottom: 6px;
}

.laandla-channel-desc {
    color: var(--laandla-text-muted);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.laandla-channel-count {
    color: var(--laandla-text-muted);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.laandla-channel-count strong {
    color: var(--laandla-accent);
    font-weight: 700;
}

.laandla-channel-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.laandla-channel-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.laandla-channel-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    border-radius: 20px;
    color: var(--laandla-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--laandla-transition);
}

.laandla-channel-nav-link:hover {
    background: var(--laandla-accent-dim);
    border-color: var(--laandla-accent);
    color: var(--laandla-accent);
}

.laandla-channel-nav-link.is-active {
    background: var(--laandla-accent);
    border-color: var(--laandla-accent);
    color: #ffffff;
}

.laandla-section--compact .laandla-game-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

/* ============================================
   Search Bar (Homepage)
   ============================================ */
.laandla-search-wrap {
    margin-bottom: 24px;
    position: relative;
}

.laandla-search-bar {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--laandla-bg-card);
    border: 2px solid var(--laandla-border);
    border-radius: var(--laandla-radius);
    color: var(--laandla-text);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--laandla-transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.laandla-search-bar::placeholder {
    color: var(--laandla-text-muted);
}

.laandla-search-bar:focus {
    border-color: var(--laandla-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.laandla-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--laandla-text-muted);
    pointer-events: none;
}

.laandla-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    border-radius: 0 0 var(--laandla-radius) var(--laandla-radius);
    max-height: 320px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.laandla-search-results.is-open {
    display: block;
}

.laandla-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    transition: background 0.15s;
}

.laandla-search-result-item:hover {
    background: var(--laandla-bg-elevated);
}

.laandla-search-result-item img {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.laandla-search-result-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--laandla-text);
}

.laandla-search-result-type {
    font-size: 0.7rem;
    color: var(--laandla-text-muted);
}

/* ============================================
   Hero Carousel
   ============================================ */
.laandla-hero-carousel {
    position: relative;
    border-radius: var(--laandla-radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    background: var(--laandla-bg-dark);
    border: 1px solid var(--laandla-border);
    aspect-ratio: 21 / 7;
    max-height: 340px;
}

.laandla-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.laandla-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: block;
}

.laandla-carousel-slide.is-active {
    opacity: 1;
}

.laandla-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laandla-carousel-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 36px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
}

.laandla-carousel-slide-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--laandla-accent);
    margin-bottom: 10px;
}

.laandla-carousel-slide-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.laandla-carousel-slide-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 560px;
    margin-bottom: 14px;
}

.laandla-carousel-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--laandla-accent);
    color: #fff;
    transition: background 0.2s ease;
}

.laandla-carousel-slide-cta:hover {
    background: var(--laandla-accent2);
}

.laandla-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 5;
    border: none;
    cursor: pointer;
}

.laandla-carousel-arrow:hover {
    background: rgba(255,255,255,0.35);
}

.laandla-carousel-prev { left: 14px; }
.laandla-carousel-next { right: 14px; }

.laandla-carousel-dots {
    position: absolute;
    bottom: 14px;
    right: 36px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.laandla-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.laandla-carousel-dot.is-active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   Game Trivia Widget (Homepage)
   ============================================ */
.laandla-trivia-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #fef3e2, #fde8d0);
    border: 1px solid var(--laandla-border);
    border-radius: var(--laandla-radius-lg);
    margin: 28px 0;
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.06);
}

.laandla-trivia-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.laandla-trivia-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.laandla-trivia-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--laandla-accent);
    margin: 0;
}

.laandla-trivia-text {
    font-size: 0.85rem;
    color: var(--laandla-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.laandla-trivia-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--laandla-accent);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--laandla-transition);
    flex-shrink: 0;
}

.laandla-trivia-btn:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* ============================================
   Daily Game Widget (Homepage)
   ============================================ */
.laandla-daily-game {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    border-radius: var(--laandla-radius-lg);
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.laandla-daily-game::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--laandla-accent), var(--laandla-accent3));
}

.laandla-daily-game-badge {
    display: inline-block;
    background: var(--laandla-accent);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.laandla-daily-game-img {
    width: 120px;
    height: 90px;
    border-radius: var(--laandla-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.laandla-daily-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laandla-daily-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.laandla-daily-game-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--laandla-text);
}

.laandla-daily-game-desc {
    font-size: 0.8rem;
    color: var(--laandla-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.laandla-daily-game-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--laandla-accent);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--laandla-transition);
    flex-shrink: 0;
    align-self: center;
}

.laandla-daily-game-btn:hover {
    background: #fb923c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* ============================================
   Breadcrumb (Detail Pages)
   ============================================ */
.laandla-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: var(--laandla-text-muted);
    flex-wrap: wrap;
}

.laandla-breadcrumb a {
    color: var(--laandla-accent);
    font-weight: 500;
    transition: var(--laandla-transition);
}

.laandla-breadcrumb a:hover {
    color: var(--laandla-accent2);
}

.laandla-breadcrumb-sep {
    color: var(--laandla-border);
    font-size: 0.7rem;
}

/* ============================================
   Share Buttons (Detail Pages)
   ============================================ */
.laandla-share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--laandla-border);
}

.laandla-share-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--laandla-text-muted);
}

.laandla-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--laandla-transition);
    border: 1px solid var(--laandla-border);
    background: var(--laandla-bg-elevated);
    color: var(--laandla-text-muted);
    cursor: pointer;
}

.laandla-share-btn:hover {
    background: var(--laandla-accent);
    border-color: var(--laandla-accent);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ============================================
   Game Detail Page
   ============================================ */
.laandla-game-detail { padding: 20px 0; }

.laandla-game-detail-cover-wrap {
    width: 100%;
    height: 220px;
    border-radius: var(--laandla-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.laandla-game-detail-cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--laandla-bg-deep) 0%, transparent 60%);
    opacity: 0.5;
}

.laandla-game-detail-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laandla-game-detail-info {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 28px;
    margin-bottom: 28px;
}

.laandla-game-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.laandla-game-detail-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--laandla-text);
    line-height: 1.2;
}

.laandla-game-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.laandla-tag {
    display: inline-block;
    background: var(--laandla-accent-dim);
    color: var(--laandla-accent);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.laandla-tag--date {
    background: var(--laandla-accent3-dim);
    color: var(--laandla-accent3);
}

.laandla-game-detail-desc {
    color: var(--laandla-text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
}

.laandla-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--laandla-accent);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 10px;
    transition: var(--laandla-transition);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.laandla-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    background: #fb923c;
}

.laandla-detail-sidebar {
    background: var(--laandla-bg-card);
    border-radius: var(--laandla-radius);
    padding: 20px;
    border: 1px solid var(--laandla-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    height: fit-content;
}

.laandla-detail-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--laandla-border);
}

.laandla-detail-sidebar-row:last-child { border-bottom: none; }

.laandla-detail-sidebar-label {
    color: var(--laandla-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.laandla-detail-sidebar-value {
    color: var(--laandla-text);
    font-size: 0.82rem;
    font-weight: 700;
}

.laandla-article {
    background: var(--laandla-bg-card);
    border-radius: var(--laandla-radius);
    padding: 28px;
    border: 1px solid var(--laandla-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.laandla-article h3 {
    font-size: 1rem;
    color: var(--laandla-text);
    margin: 20px 0 8px;
    font-weight: 700;
}

.laandla-article h3:first-child { margin-top: 0; }

.laandla-article p {
    color: var(--laandla-text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ============================================
   Footer
   ============================================ */
.laandla-footer {
    background: var(--laandla-bg-dark);
    padding: 36px 0 24px;
    margin-top: 48px;
    border-top: 1px solid var(--laandla-border);
}

.laandla-footer-inner {
    max-width: var(--laandla-max-width);
    margin: 0 auto;
    padding: 0 22px;
}

.laandla-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 40px;
}

.laandla-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--laandla-text);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.laandla-footer-brand img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.laandla-footer-desc {
    color: var(--laandla-text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 400px;
}

.laandla-footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 6px;
}

.laandla-footer-links-row a {
    color: var(--laandla-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--laandla-transition);
}

.laandla-footer-links-row a:hover {
    color: var(--laandla-accent);
}

.laandla-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--laandla-border);
    color: var(--laandla-text-muted);
    font-size: 0.72rem;
    line-height: 1.7;
}

.laandla-footer-bottom a {
    color: var(--laandla-text-secondary);
}

.laandla-footer-bottom a:hover {
    color: var(--laandla-accent);
}

/* ============================================
   404 Error Page
   ============================================ */
.laandla-error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 60vh;
}

.laandla-error-code {
    font-size: 7rem;
    font-weight: 900;
    color: var(--laandla-accent);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.6;
}

.laandla-error-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--laandla-text);
    margin-bottom: 10px;
}

.laandla-error-desc {
    color: var(--laandla-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 440px;
}

.laandla-error-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--laandla-accent);
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    font-size: 0.88rem;
    transition: var(--laandla-transition);
}

.laandla-error-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

/* ============================================
   Article Content (Legal, FAQ, etc.)
   ============================================ */
.laandla-article-page {
    max-width: 820px;
    margin: 0 auto;
    background: var(--laandla-bg-card);
    border-radius: var(--laandla-radius);
    padding: 36px;
    border: 1px solid var(--laandla-border);
}

.laandla-article-page h1 {
    font-size: 1.6rem;
    color: var(--laandla-text);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--laandla-border);
    font-weight: 900;
}

.laandla-article-page h2 {
    font-size: 1.1rem;
    color: var(--laandla-text);
    margin: 26px 0 10px;
    font-weight: 700;
}

.laandla-article-page h3 {
    font-size: 0.98rem;
    color: var(--laandla-text);
    margin: 18px 0 8px;
    font-weight: 700;
}

.laandla-article-page h4 {
    font-size: 0.88rem;
    color: var(--laandla-accent);
    margin: 14px 0 6px;
    font-weight: 700;
}

.laandla-article-page p {
    color: var(--laandla-text-secondary);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.laandla-article-page ul,
.laandla-article-page ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.laandla-article-page li {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 5px;
    list-style: disc;
    color: var(--laandla-text-secondary);
}

.laandla-article-page ol li { list-style: decimal; }

.laandla-article-page a {
    color: var(--laandla-accent);
    text-decoration: underline;
}

.laandla-article-page a:hover {
    color: var(--laandla-accent2);
}

.laandla-article-page strong { color: var(--laandla-text); }

.laandla-article-page .laandla-article-date {
    color: var(--laandla-text-muted);
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.laandla-article-page .laandla-contact-email {
    display: inline-block;
    background: var(--laandla-accent-dim);
    color: var(--laandla-accent);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    margin: 4px 0 14px;
    border: 1px dashed rgba(37, 99, 235, 0.25);
    font-size: 0.85rem;
}

/* FAQ Accordion */
.laandla-faq-item {
    border: 1px solid var(--laandla-border);
    border-radius: var(--laandla-radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--laandla-bg-card);
}

.laandla-faq-item:hover { border-color: var(--laandla-border-hover); }

.laandla-faq-question {
    width: 100%;
    padding: 16px 20px;
    background: var(--laandla-bg-elevated);
    color: var(--laandla-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--laandla-transition);
}

.laandla-faq-question:hover { background: var(--laandla-surface); }

.laandla-faq-question::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--laandla-accent);
    transition: transform 0.3s;
    font-weight: 300;
}

.laandla-faq-item.is-open .laandla-faq-question::after {
    transform: rotate(45deg);
}

.laandla-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.laandla-faq-item.is-open .laandla-faq-answer { max-height: 600px; }

.laandla-faq-answer-inner {
    padding: 18px 20px;
    color: var(--laandla-text-secondary);
    font-size: 0.85rem;
    line-height: 1.8;
    background: var(--laandla-bg-card);
}

/* ============================================
   Back to Top
   ============================================ */
.laandla-back-top {
    position: fixed;
    right: 24px;
    bottom: 70px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.laandla-back-top.is-visible { display: flex; }

.laandla-back-btn {
    width: 40px;
    height: 40px;
    background: var(--laandla-bg-card);
    border: 1px solid var(--laandla-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--laandla-transition);
}

.laandla-back-btn:hover {
    background: var(--laandla-accent-dim);
    border-color: var(--laandla-accent);
}

.laandla-back-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(1500%) hue-rotate(210deg);
}

/* ============================================
   Game Iframe - Fullscreen
   ============================================ */
.laandla-iframe-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
}

.laandla-iframe-back {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: var(--laandla-transition);
}

.laandla-iframe-back:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--laandla-accent);
}

.laandla-iframe-back img {
    width: 20px;
    height: 20px;
}

.laandla-game-iframe,
iframe.game {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .laandla-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .laandla-game-grid--compact {
        grid-template-columns: repeat(4, 1fr);
    }

    .laandla-hero-carousel {
        aspect-ratio: 16 / 7;
        max-height: 280px;
    }

    .laandla-carousel-slide-title { font-size: 1.3rem; }
    .laandla-carousel-slide-desc { font-size: 0.8rem; max-width: 420px; }
    .laandla-carousel-slide-overlay { padding: 30px 28px 24px; }

    .laandla-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .laandla-featured-grid .laandla-game-card:first-child {
        grid-row: auto;
    }

    .laandla-featured-grid .laandla-game-card:first-child .laandla-game-thumb {
        aspect-ratio: 4 / 3;
    }

    .laandla-spotlight-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 12px;
    }

    .laandla-spotlight-main {
        grid-row: span 2;
        min-height: 240px;
    }

    .laandla-spotlight-main img {
        aspect-ratio: 3 / 4;
    }

    .laandla-editors-row {
        grid-template-columns: 1fr;
    }

    .laandla-tab-panel.laandla-game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .laandla-game-detail-info {
        grid-template-columns: 1fr;
    }

    .laandla-features-strip {
        grid-template-columns: 1fr;
    }

    .laandla-footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .laandla-footer-links-row {
        justify-content: flex-start;
    }

    .laandla-section--compact .laandla-game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .laandla-trivia-strip {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }

    .laandla-trivia-btn {
        width: 100%;
        justify-content: center;
    }

    .laandla-daily-game-img {
        width: 100px;
        height: 75px;
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 640px) {
    :root {
        --laandla-header-height: 52px;
    }

    .laandla-container { padding: 0 14px; }

    .laandla-navbar { padding: 0 14px; }

    .laandla-nav-title { font-size: 1.15rem; }
    .laandla-nav-logo { width: 30px; height: 30px; border-radius: 8px; }

    .laandla-nav-toggle { display: flex; }

    .laandla-nav-menu {
        display: none;
        position: absolute;
        top: var(--laandla-header-height);
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--laandla-bg-dark);
        border-bottom: 1px solid var(--laandla-border);
        padding: 8px 0;
        height: auto;
    }

    .laandla-nav-menu.is-open { display: flex; }

    .laandla-hero-carousel {
        aspect-ratio: 4 / 3;
        max-height: 220px;
        border-radius: var(--laandla-radius);
    }

    .laandla-carousel-slide-title { font-size: 1.05rem; }
    .laandla-carousel-slide-desc { font-size: 0.72rem; max-width: 280px; }
    .laandla-carousel-slide-overlay { padding: 20px 18px 16px; }
    .laandla-carousel-slide-tag { font-size: 0.55rem; padding: 3px 8px; }
    .laandla-carousel-slide-cta { font-size: 0.7rem; padding: 6px 14px; }
    .laandla-carousel-arrow { width: 32px; height: 32px; font-size: 1.1rem; }
    .laandla-carousel-dots { bottom: 10px; right: 18px; }
    .laandla-carousel-dot { width: 8px; height: 8px; }
    .laandla-carousel-dot.is-active { width: 22px; }

    .laandla-nav-link {
        color: var(--laandla-text-secondary);
        padding: 12px 20px;
        height: auto;
    }

    .laandla-nav-link::after { display: none; }

    .laandla-nav-link.is-active {
        background: var(--laandla-accent-dim);
        color: var(--laandla-accent);
    }

    .laandla-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .laandla-game-grid--compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .laandla-category-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px;
        overflow: visible;
    }

    .laandla-cat-chip {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 12px 6px;
        border-radius: var(--laandla-radius-sm);
        background: var(--laandla-bg-card);
        border-color: var(--laandla-border);
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

    .laandla-cat-chip:hover {
        background: var(--laandla-accent-dim);
    }

    .laandla-cat-icon { font-size: 1.2rem; }

    .laandla-cat-label {
        font-size: 0.7rem;
        text-align: center;
    }

    .laandla-game-body { padding: 8px 10px 10px; }
    .laandla-game-name { font-size: 0.7rem; }
    .laandla-game-desc { display: none; }
    .laandla-game-tag { font-size: 0.55rem; padding: 2px 6px; }

    .laandla-section-header { margin-bottom: 14px; }
    .laandla-section-title { font-size: 1rem; }

    .laandla-spotlight-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .laandla-spotlight-main {
        grid-column: span 2;
        grid-row: auto;
        min-height: 180px;
    }

    .laandla-spotlight-main img {
        aspect-ratio: 16 / 9;
    }

    .laandla-spotlight-main-title {
        font-size: 1rem;
    }

    .laandla-spotlight-main-desc {
        display: none;
    }

    .laandla-spotlight-side img {
        aspect-ratio: 1 / 1;
    }

    .laandla-editors-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .laandla-editor-card {
        flex-direction: column;
    }

    .laandla-editor-card-img {
        width: 100%;
        height: 160px;
    }

    .laandla-tab-bar {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .laandla-tab-bar::-webkit-scrollbar { display: none; }

    .laandla-tab-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .laandla-tab-panel.laandla-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .laandla-game-detail-cover-wrap { height: 160px; }

    .laandla-game-detail-title { font-size: 1.2rem; }

    .laandla-game-detail-desc { font-size: 0.82rem; }

    .laandla-play-btn {
        width: 100%;
        max-width: none;
        padding: 12px 24px;
    }

    .laandla-article-page { padding: 18px; }
    .laandla-article-page h1 { font-size: 1.25rem; }
    .laandla-article-page h2 { font-size: 1rem; }
    .laandla-article-page p { font-size: 0.82rem; }

    .laandla-footer-grid { grid-template-columns: 1fr; gap: 20px; }

    .laandla-error-code { font-size: 4.5rem; }
    .laandla-error-title { font-size: 1.1rem; }

    .laandla-back-top { right: 14px; bottom: 60px; }
    .laandla-back-btn { width: 36px; height: 36px; }

    .laandla-channel-name { font-size: 1.3rem; }

    .laandla-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .laandla-scroll-row .laandla-game-card {
        min-width: 160px;
        max-width: 160px;
    }

    .laandla-features-strip {
        padding: 16px;
        gap: 12px;
    }

    .laandla-section--compact .laandla-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .laandla-channel-header-row {
        gap: 12px;
    }

    .laandla-channel-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .laandla-channel-nav {
        gap: 6px;
    }

    .laandla-channel-nav-link {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .laandla-trivia-strip {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }

    .laandla-trivia-icon { font-size: 1.8rem; }
    .laandla-trivia-title { font-size: 0.85rem; }
    .laandla-trivia-text { font-size: 0.78rem; }
    .laandla-trivia-btn {
        width: 100%;
        justify-content: center;
    }

    .laandla-daily-game {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .laandla-daily-game-img {
        width: 100%;
        height: 140px;
    }

    .laandla-daily-game-btn {
        width: 100%;
        justify-content: center;
    }

    .laandla-search-bar {
        padding: 12px 16px 12px 42px;
        font-size: 0.88rem;
    }

    .laandla-breadcrumb { font-size: 0.72rem; }

    .laandla-share-bar { flex-wrap: wrap; }
}
