/* ===== PREMIUM GAMING WEBSITE DESIGN ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f1923;
    color: #c7d5e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: #66c0f4; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #a4d7f5; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
    background: linear-gradient(180deg, #1b2838 0%, #171a21 100%);
    border-bottom: 1px solid rgba(102, 192, 244, 0.08);
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 64px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.25rem; color: #fff; flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
    background: linear-gradient(135deg, #66c0f4 0%, #4b9cd3 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    padding: 8px 16px; border-radius: 6px; font-size: 0.875rem;
    font-weight: 500; color: #8f98a0; transition: all 0.2s ease; white-space: nowrap;
}
.main-nav a:hover { background: rgba(255, 255, 255, 0.05); color: #c7d5e0; }
.main-nav a.active { background: rgba(102, 192, 244, 0.1); color: #66c0f4; }
.nav-social {
    display: flex; gap: 6px; margin-left: 16px; padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-social a {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; background: rgba(102, 192, 244, 0.08);
    color: #66c0f4; font-weight: 700; font-size: 0.8rem; transition: all 0.2s ease;
}
.nav-social a:hover { background: rgba(102, 192, 244, 0.2); transform: translateY(-1px); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; border-radius: 6px;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.05); }
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: #c7d5e0;
    margin: 5px 0; border-radius: 2px; transition: all 0.3s ease;
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, #1b2838 0%, #1e3a5f 40%, #2a475e 70%, #1b2838 100%);
    padding: 64px 0 56px; text-align: center; position: relative; overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(102, 192, 244, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section h1 {
    font-size: 2.5rem; font-weight: 800; margin-bottom: 14px;
    color: #fff; letter-spacing: -0.02em; position: relative;
}
.hero-section p {
    font-size: 1.05rem; color: #8f98a0; max-width: 560px;
    margin: 0 auto 32px; position: relative;
}
.hero-search { position: relative; }
.hero-search form {
    display: flex; max-width: 520px; margin: 0 auto;
    background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(102, 192, 244, 0.15);
    border-radius: 12px; overflow: hidden; transition: border-color 0.3s ease;
}
.hero-search form:focus-within { border-color: rgba(102, 192, 244, 0.4); }
.hero-search input {
    flex: 1; padding: 14px 20px; border: none; background: transparent;
    color: #fff; font-size: 0.95rem; outline: none; font-family: inherit;
}
.hero-search input::placeholder { color: #4e5b64; }
.hero-search button {
    padding: 14px 28px; background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    color: #fff; border: none; font-weight: 600; cursor: pointer;
    font-size: 0.9rem; font-family: inherit; transition: opacity 0.2s ease;
}
.hero-search button:hover { opacity: 0.9; }

/* BREADCRUMB */
.breadcrumb { padding: 18px 0; font-size: 0.85rem; color: #4e5b64; }
.breadcrumb a { color: #66c0f4; }
.breadcrumb a:hover { color: #a4d7f5; }
.breadcrumb span { margin: 0 8px; color: #3b4956; }

/* SECTION HEADERS */
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin: 36px 0 22px; flex-wrap: wrap; gap: 12px;
}
.section-header h1, .section-header h2 {
    font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: -0.01em;
}
.view-all {
    font-size: 0.875rem; font-weight: 600; color: #66c0f4;
    display: flex; align-items: center; gap: 4px;
}
.view-all:hover { color: #a4d7f5; }
.sort-options { display: flex; gap: 6px; }
.sort-options a {
    padding: 7px 18px; border-radius: 20px; font-size: 0.825rem; font-weight: 500;
    background: rgba(255, 255, 255, 0.04); color: #8f98a0;
    border: 1px solid rgba(255, 255, 255, 0.06); transition: all 0.2s ease;
}
.sort-options a.active, .sort-options a:hover {
    background: rgba(102, 192, 244, 0.12); color: #66c0f4;
    border-color: rgba(102, 192, 244, 0.25);
}

/* GAME GRID */
.game-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 16px;
}
.game-card {
    background: #1b2838; border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: block;
}
.game-card:hover {
    transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 192, 244, 0.2);
}
.game-thumb { position: relative; aspect-ratio: 1; overflow: hidden; background: #0f1923; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.play-overlay {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.1rem;
    opacity: 0; transition: opacity 0.25s ease; backdrop-filter: blur(2px);
}
.game-card:hover .play-overlay { opacity: 1; }
.game-info { padding: 12px 14px; }
.game-info h3 {
    font-size: 0.85rem; font-weight: 600; color: #c7d5e0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.4;
}

/* CATEGORIES */
.categories-section { margin: 44px 0; }
.categories-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 12px;
}
.category-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 22px 14px; background: #1b2838;
    border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 10px;
    transition: all 0.2s ease; text-align: center; cursor: pointer;
}
.category-card:hover {
    background: #1e3a5f; border-color: rgba(102, 192, 244, 0.2); transform: translateY(-2px);
}
.cat-icon { font-size: 1.8rem; line-height: 1; }
.cat-name { font-weight: 600; font-size: 0.85rem; color: #c7d5e0; }
.category-desc {
    margin-bottom: 24px; padding: 18px 22px; background: #1b2838;
    border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.04);
}
.category-desc p { color: #8f98a0; font-size: 0.92rem; }

/* PAGINATION */
.pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin: 44px 0; flex-wrap: wrap;
}
.page-btn {
    padding: 9px 16px; border-radius: 8px; font-size: 0.875rem; font-weight: 500;
    background: #1b2838; color: #8f98a0;
    border: 1px solid rgba(255, 255, 255, 0.06); transition: all 0.2s ease;
}
.page-btn:hover, .page-btn.active {
    background: rgba(102, 192, 244, 0.12); color: #66c0f4;
    border-color: rgba(102, 192, 244, 0.25);
}
.page-dots { color: #4e5b64; padding: 0 4px; }

/* GAME PAGE */
.game-page-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 28px; margin-top: 8px;
}
.game-player-card {
    background: #1b2838; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04); overflow: hidden;
}
.game-page-title {
    padding: 22px 24px 0; font-size: 1.5rem;
    font-weight: 700; color: #fff; letter-spacing: -0.01em;
}
.game-iframe-wrap { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.game-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.game-controls-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.btn-fullscreen {
    background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    color: #fff; border: none; padding: 9px 22px; border-radius: 8px;
    cursor: pointer; font-weight: 600; font-size: 0.85rem; font-family: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-fullscreen:hover { opacity: 0.9; transform: translateY(-1px); }
.game-category-tag {
    background: rgba(102, 192, 244, 0.1); color: #66c0f4;
    padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    border: 1px solid rgba(102, 192, 244, 0.15);
}

/* GAME REVIEW */
.game-review-card {
    background: #1b2838; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04); padding: 26px; margin-top: 20px;
}
.game-review-card h2 { font-size: 1.15rem; margin-bottom: 14px; color: #fff; }
.review-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 16px; }
.star { font-size: 1.3rem; color: #2a3f5f; }
.star.filled { color: #ffc107; }
.rating-text { margin-left: 10px; font-weight: 700; color: #ffc107; font-size: 1rem; }
.review-text { color: #8f98a0; line-height: 1.8; margin-bottom: 20px; }
.review-text p { margin-bottom: 12px; }
.review-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.author-details { display: flex; flex-direction: column; gap: 2px; }
.author-details strong { color: #fff; font-size: 0.9rem; }
.author-details span { color: #4e5b64; font-size: 0.8rem; }

/* GAME CONTENT */
.game-content-section {
    background: #1b2838; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04); padding: 28px; margin-top: 20px;
}
.game-content-section h2 {
    font-size: 1.2rem; margin-bottom: 18px; color: #fff;
    padding-bottom: 12px; border-bottom: 2px solid rgba(102, 192, 244, 0.15);
}
.content-body { color: #8f98a0; line-height: 1.85; }
.content-body p { margin-bottom: 14px; }
.content-body h3 { color: #c7d5e0; font-size: 1.02rem; margin: 20px 0 10px; }
.content-body ul, .content-body ol { margin: 10px 0 16px 24px; }
.content-body li { margin-bottom: 7px; list-style: disc; }
.content-body ol li { list-style: decimal; }

/* AUTHOR BIO */
.author-bio-section {
    display: flex; gap: 22px; background: #1b2838; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 26px; margin-top: 20px; align-items: flex-start;
}
.author-avatar-lg {
    width: 68px; height: 68px; border-radius: 50%;
    background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.6rem; flex-shrink: 0;
}
.author-bio-content h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.author-role { color: #66c0f4; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.author-bio-text { color: #8f98a0; font-size: 0.9rem; line-height: 1.65; }

/* SIDEBAR */
.game-sidebar { position: sticky; top: 80px; align-self: start; }
.game-sidebar h3 { font-size: 1.05rem; color: #fff; margin-bottom: 16px; font-weight: 700; }
.sidebar-games { display: flex; flex-direction: column; gap: 8px; }
.sidebar-game-card {
    display: flex; align-items: center; gap: 12px; padding: 10px;
    background: #1b2838; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04); transition: all 0.2s ease;
}
.sidebar-game-card:hover { background: #1e3a5f; border-color: rgba(102, 192, 244, 0.15); }
.sidebar-game-card img {
    width: 54px; height: 54px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
}
.sidebar-game-card span {
    font-size: 0.85rem; color: #c7d5e0; font-weight: 500;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* SEARCH */
.search-header { margin-bottom: 24px; }
.search-header h1 { font-size: 1.4rem; color: #fff; margin-bottom: 18px; }
.search-form-large {
    display: flex; max-width: 600px; margin-bottom: 14px;
    background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(102, 192, 244, 0.12);
    border-radius: 10px; overflow: hidden; transition: border-color 0.3s ease;
}
.search-form-large:focus-within { border-color: rgba(102, 192, 244, 0.35); }
.search-form-large input {
    flex: 1; padding: 13px 20px; border: none; background: transparent;
    color: #fff; font-size: 0.95rem; outline: none; font-family: inherit;
}
.search-form-large input::placeholder { color: #4e5b64; }
.search-form-large button {
    padding: 13px 24px; background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    color: #fff; border: none; font-weight: 600; cursor: pointer; font-family: inherit;
}
.search-count { color: #4e5b64; font-size: 0.875rem; }
.no-results { text-align: center; padding: 60px 20px; }
.no-results h2 { color: #fff; margin-bottom: 12px; }
.no-results p { color: #4e5b64; }

/* STATIC PAGES */
.page-content {
    background: #1b2838; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04); padding: 40px; margin: 20px 0 40px;
}
.page-content h1 {
    font-size: 1.7rem; color: #fff; margin-bottom: 22px;
    padding-bottom: 16px; border-bottom: 2px solid rgba(102, 192, 244, 0.12);
    letter-spacing: -0.01em;
}
.page-content h2 { font-size: 1.25rem; color: #c7d5e0; margin: 30px 0 14px; }
.page-content h3 { font-size: 1.05rem; color: #8f98a0; margin: 22px 0 10px; }
.page-content p { margin-bottom: 14px; color: #8f98a0; line-height: 1.75; }
.page-content ul, .page-content ol { margin: 10px 0 18px 24px; }
.page-content li { margin-bottom: 8px; color: #8f98a0; list-style: disc; line-height: 1.65; }
.page-content ol li { list-style: decimal; }

/* ABOUT PAGE */
.about-intro { font-size: 1.02rem; margin-bottom: 20px; }
.about-intro p { color: #8f98a0; }
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px; margin: 22px 0;
}
.team-member {
    background: rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px; padding: 26px; text-align: center; transition: border-color 0.2s ease;
}
.team-member:hover { border-color: rgba(102, 192, 244, 0.15); }
.team-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.3rem; margin: 0 auto 14px;
}
.team-member h3 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.team-role { color: #66c0f4; font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.team-bio { color: #6b7c8a; font-size: 0.85rem; line-height: 1.55; }

/* CONTACT PAGE */
.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px; margin: 22px 0;
}
.contact-card {
    background: rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px; padding: 26px; transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: rgba(102, 192, 244, 0.15); }
.contact-card h2 { font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.contact-card p { color: #6b7c8a; font-size: 0.9rem; margin-bottom: 6px; }
.contact-info-box {
    background: rgba(102, 192, 244, 0.05); border: 1px solid rgba(102, 192, 244, 0.1);
    border-radius: 10px; padding: 24px; margin: 18px 0;
}
.contact-info-box p { margin-bottom: 8px; color: #8f98a0; }
.social-links-about { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.social-links-about a {
    padding: 9px 22px; border-radius: 8px; background: rgba(102, 192, 244, 0.08);
    color: #66c0f4; font-weight: 600; font-size: 0.875rem;
    transition: all 0.2s ease; border: 1px solid rgba(102, 192, 244, 0.1);
}
.social-links-about a:hover { background: rgba(102, 192, 244, 0.18); }

/* FAQ */
.faq-section { margin-top: 18px; }
.faq-item {
    background: rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px; padding: 22px; margin-bottom: 10px; transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(102, 192, 244, 0.12); }
.faq-item h3 { color: #c7d5e0; font-size: 0.95rem; margin-bottom: 8px; }
.faq-item p { color: #6b7c8a; font-size: 0.9rem; margin-bottom: 0; }

/* SEO CONTENT */
.seo-content {
    background: #1b2838; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04); padding: 34px; margin: 44px 0;
}
.seo-content h2 { font-size: 1.2rem; color: #c7d5e0; margin-bottom: 16px; }
.seo-content p { color: #6b7c8a; margin-bottom: 12px; line-height: 1.8; }

/* FOOTER */
.site-footer {
    background: #171a21; border-top: 1px solid rgba(102, 192, 244, 0.06);
    padding: 52px 0 0; margin-top: 52px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; }
.footer-col h3 {
    color: #fff; font-size: 0.95rem; margin-bottom: 18px;
    font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
}
.footer-col p { color: #4e5b64; font-size: 0.85rem; margin-bottom: 6px; line-height: 1.6; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #4e5b64; font-size: 0.85rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: #66c0f4; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a {
    padding: 7px 16px; border-radius: 6px; background: rgba(102, 192, 244, 0.06);
    color: #66c0f4; font-size: 0.8rem; font-weight: 600;
    border: 1px solid rgba(102, 192, 244, 0.08); transition: all 0.2s ease;
}
.footer-social a:hover { background: rgba(102, 192, 244, 0.15); }
.footer-bottom {
    text-align: center; padding: 24px 0; margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-bottom p { color: #3b4956; font-size: 0.8rem; }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(23, 26, 33, 0.98); border-top: 1px solid rgba(102, 192, 244, 0.15);
    padding: 18px 0; z-index: 9999;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.cookie-content {
    max-width: 1340px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cookie-content p { color: #8f98a0; font-size: 0.85rem; flex: 1; }
.cookie-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cookie-link { color: #66c0f4; font-size: 0.85rem; font-weight: 600; }
.cookie-accept {
    background: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
    color: #fff; border: none; padding: 10px 24px; border-radius: 8px;
    cursor: pointer; font-weight: 600; font-size: 0.85rem;
    white-space: nowrap; font-family: inherit; transition: opacity 0.2s ease;
}
.cookie-accept:hover { opacity: 0.9; }

.game-section { margin-bottom: 16px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .game-page-layout { grid-template-columns: 1fr; }
    .game-sidebar { position: static; }
    .sidebar-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav {
        display: none; position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(23, 26, 33, 0.98); flex-direction: column; padding: 12px;
        border-bottom: 1px solid rgba(102, 192, 244, 0.08);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        z-index: 999; max-height: calc(100vh - 64px); overflow-y: auto;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 16px; border-radius: 8px; }
    .nav-social {
        margin-left: 0; padding-left: 0; border-left: none;
        padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.04);
        justify-content: center;
    }
    .nav-toggle { display: block; }
    .hero-section { padding: 48px 0 40px; }
    .hero-section h1 { font-size: 1.7rem; }
    .hero-section p { font-size: 0.92rem; }
    .game-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .page-content { padding: 24px; }
    .game-content-section { padding: 22px; }
    .game-review-card { padding: 22px; }
    .author-bio-section { flex-direction: column; align-items: center; text-align: center; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
    .section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-search form { flex-direction: column; border-radius: 10px; }
    .hero-search input { border-bottom: 1px solid rgba(102, 192, 244, 0.1); }
    .hero-search button { border-radius: 0 0 10px 10px; }
    .search-form-large { flex-direction: column; border-radius: 10px; }
    .search-form-large input { border-bottom: 1px solid rgba(102, 192, 244, 0.1); }
    .search-form-large button { border-radius: 0 0 10px 10px; }
    .game-page-title { font-size: 1.2rem; padding: 16px 16px 0; }
    .page-content { padding: 18px; }
    .page-content h1 { font-size: 1.3rem; }
    .game-controls-bar { padding: 12px 16px; }
    .game-review-card { padding: 18px; }
    .game-content-section { padding: 18px; }
}
