/* ============================================
   Game Circle Zone — gamecirclezone.com
   Gaming style, path background, cursor glow. Vanilla only.
   No money / no currency — entertainment only, virtual credits
   ============================================ */

:root {
    --gcz-cyan: #00f5ff;
    --gcz-magenta: #ff00aa;
    --gcz-purple: #8b5cf6;
    --gcz-bg: #0a0612;
    --gcz-surface: rgba(15, 10, 28, 0.92);
    --gcz-border: rgba(0, 245, 255, 0.2);
    --gcz-text: #e2e0f0;
    --gcz-text-soft: #9890b0;
    --gcz-font: 'Rajdhani', system-ui, sans-serif;
    --gcz-font-head: 'Orbitron', sans-serif;
    --gcz-radius: 8px;
    --gcz-ease: cubic-bezier(0.33, 1, 0.68, 1);
    --gcz-glow: 0 0 40px rgba(0, 245, 255, 0.25);
    --gcz-transition: 0.3s var(--gcz-ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--gcz-font);
    background: var(--gcz-bg);
    color: var(--gcz-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;

}

body.gcz-menu-open { overflow: hidden; }

/* ========== Cursor glow / laser ========== */
.gcz-cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 245, 255, 0.12) 0%,
        rgba(255, 0, 170, 0.06) 35%,
        transparent 70%
    );
    transition: opacity 0.15s, transform 0.08s;
}

.gcz-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--gcz-cyan);
    box-shadow: 0 0 20px var(--gcz-cyan), 0 0 40px rgba(0, 245, 255, 0.5);
    transition: transform 0.05s;
}

@media (hover: none) {
    body { cursor: auto; }
    .gcz-cursor-glow,
    .gcz-cursor-dot { display: none !important; }
}

/* ========== Animated path background ========== */
.gcz-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gcz-bg__base {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0a0612 0%, #120a1a 40%, #0d0818 100%);
}

.gcz-bg__paths {
    position: absolute;
    inset: -20%;
    opacity: 0.35;
}

.gcz-bg__paths svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: gcz-path-move 45s linear infinite;
}

.gcz-bg__paths svg:nth-child(2) { animation-duration: 55s; animation-direction: reverse; opacity: 0.5; }
.gcz-bg__paths svg:nth-child(3) { animation-duration: 40s; animation-delay: -10s; opacity: 0.25; }

@keyframes gcz-path-move {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, 5%) rotate(5deg); }
}

.gcz-bg__grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gcz-grid-drift 20s linear infinite;
}

@keyframes gcz-grid-drift {
    0% { transform: perspective(400px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(400px) rotateX(60deg) translateY(60px); }
}

.gcz-bg__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 6, 18, 0.85) 100%);
}

/* ========== Layout ========== */
main {
    position: relative;
    z-index: 2;
    min-height: 60vh;
}
.gcz-header, .gcz-section, .gcz-footer { position: relative; z-index: 1; }

/* ========== Modals ========== */
.gcz-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.gcz-modal.is-open { opacity: 1; visibility: visible; }

.gcz-modal__box {
    background: var(--gcz-surface);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--gcz-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.35s var(--gcz-ease);
}

.gcz-modal.is-open .gcz-modal__box { transform: scale(1); }

.gcz-modal .gcz-btn,
.gcz-modal a {
    cursor: pointer;
}

.gcz-modal__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
    animation: gcz-pulse 2s ease-in-out infinite;
}

@keyframes gcz-pulse {
    0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 10px var(--gcz-cyan)); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.gcz-modal__title {
    font-family: var(--gcz-font-head);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--gcz-cyan);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.gcz-modal__text {
    color: var(--gcz-text-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gcz-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.gcz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--gcz-font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--gcz-radius);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.gcz-btn:focus-visible { outline: 2px solid var(--gcz-cyan); outline-offset: 2px; }

.gcz-btn--primary {
    background: linear-gradient(135deg, var(--gcz-cyan) 0%, var(--gcz-purple) 100%);
    color: #0a0612;
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.4);
}

.gcz-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 245, 255, 0.6);
}

.gcz-btn--outline {
    background: transparent;
    color: var(--gcz-text-soft);
    border: 2px solid var(--gcz-border);
}

.gcz-btn--outline:hover {
    border-color: var(--gcz-cyan);
    color: var(--gcz-cyan);
}

/* ========== Cookie bar ========== */
.gcz-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 16px 20px;
    background: var(--gcz-surface);
    border-top: 1px solid var(--gcz-border);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.4s var(--gcz-ease);
}

.gcz-cookie.is-visible { transform: translateY(0); }

.gcz-cookie__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.gcz-cookie__text {
    color: var(--gcz-text-soft);
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}

.gcz-cookie__text a { color: var(--gcz-cyan); text-decoration: underline; }
.gcz-cookie__text a:hover { color: var(--gcz-magenta); }

.gcz-cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ========== Header ========== */
.gcz-header {
    position: sticky;
    top: 0;
    padding: 14px 24px;
    background: rgba(10, 6, 18, 0.9);
    border-bottom: 1px solid var(--gcz-border);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s;
    z-index: 100;
}

.gcz-header.scrolled { box-shadow: 0 4px 30px rgba(0, 245, 255, 0.08); }

.gcz-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gcz-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gcz-cyan);
    font-family: var(--gcz-font-head);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    transition: opacity 0.2s, text-shadow 0.2s;
}

.gcz-logo:hover {
    opacity: 1;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.gcz-logo__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gcz-cyan), var(--gcz-purple));
    border-radius: 8px;
    font-size: 1.2rem;
    color: #0a0612;
}

.gcz-nav__list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.gcz-nav__link {
    display: block;
    padding: 10px 16px;
    color: var(--gcz-text-soft);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--gcz-radius);
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.gcz-nav__link:hover,
.gcz-nav__link[aria-current="page"] {
    color: var(--gcz-cyan);
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.gcz-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gcz-cyan);
    border-radius: var(--gcz-radius);
}

.gcz-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 0 8px currentColor;
}

.gcz-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.gcz-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gcz-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.gcz-header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(15, 10, 28, 0.98);
    border-bottom: 1px solid var(--gcz-border);
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gcz-header__dropdown.is-open { display: flex; }

.gcz-header__dropdown a {
    padding: 12px 16px;
    color: var(--gcz-text-soft);
    text-decoration: none;
    border-radius: var(--gcz-radius);
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.gcz-header__dropdown a:hover { background: rgba(0, 245, 255, 0.15); color: var(--gcz-cyan); }

/* Burger at 991px */
@media (max-width: 991px) {
    .gcz-nav { display: none; }
    .gcz-burger { display: flex; }
    .gcz-header { position: relative; }
}

/* ========== Hero ========== */
.gcz-hero {
    padding: 90px 24px 110px;
    text-align: center;
}

.gcz-hero__badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.35);
    border-radius: 4px;
    color: var(--gcz-cyan);
    font-family: var(--gcz-font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: gcz-fade-up 0.8s var(--gcz-ease);
}

.gcz-hero__title {
    font-family: var(--gcz-font-head);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
    animation: gcz-fade-up 0.8s 0.1s both var(--gcz-ease);
}

.gcz-hero__sub {
    color: var(--gcz-text-soft);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: gcz-fade-up 0.8s 0.2s both var(--gcz-ease);
}

.gcz-hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: gcz-fade-up 0.8s 0.3s both var(--gcz-ease);
}

@keyframes gcz-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== Section ========== */
.gcz-section {
    padding: 72px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.gcz-section__head {
    text-align: center;
    margin-bottom: 3rem;
}

.gcz-section__title {
    font-family: var(--gcz-font-head);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.gcz-section__sub {
    color: var(--gcz-text-soft);
    font-size: 1rem;
}

/* ========== Feature cards (bento-style unique layout) ========== */
.gcz-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}

.gcz-features .gcz-feature-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.gcz-features .gcz-feature-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gcz-features .gcz-feature-card:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 66%;
}

@media (max-width: 768px) {
    .gcz-features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gcz-features .gcz-feature-card:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
    }
}

.gcz-feature-card {
    background: var(--gcz-surface);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.gcz-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gcz-glow);
    border-color: rgba(0, 245, 255, 0.4);
}

.gcz-feature-card__icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: var(--gcz-radius);
}

.gcz-feature-card h3 {
    font-family: var(--gcz-font-head);
    font-size: 1.15rem;
    color: var(--gcz-cyan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.gcz-feature-card p {
    color: var(--gcz-text-soft);
    font-size: 0.95rem;
}

/* ========== Game cards (unique zigzag layout) ========== */
.gcz-game-modes {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gcz-game-card {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 28px;
    align-items: center;
    background: var(--gcz-surface);
    border: 1px solid var(--gcz-border);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gcz-game-card:nth-child(even) {
    grid-template-columns: 1fr 280px auto;
}

.gcz-game-card:nth-child(even) .gcz-game-card__preview { order: 2; }
.gcz-game-card:nth-child(even) > div:not(.gcz-game-card__preview):not(.gcz-game-card__actions) { order: 1; }
.gcz-game-card:nth-child(even) .gcz-game-card__actions { order: 3; }

.gcz-game-card__preview {
    width: 280px;
    height: 180px;
    min-width: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
}

.gcz-game-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcz-game-card > div:not(.gcz-game-card__preview):not(.gcz-game-card__actions) {
    padding: 1.5rem 0.5rem 1.5rem 1.5rem;
}

.gcz-game-card:nth-child(even) > div:not(.gcz-game-card__preview):not(.gcz-game-card__actions) {
    padding: 1.5rem 1.5rem 1.5rem 0.5rem;
}

@media (max-width: 900px) {
    .gcz-game-card > div:not(.gcz-game-card__preview):not(.gcz-game-card__actions),
    .gcz-game-card:nth-child(even) > div:not(.gcz-game-card__preview):not(.gcz-game-card__actions) {
        padding: 1.5rem;
    }
}

.gcz-game-card:hover {
    border-color: rgba(0, 245, 255, 0.35);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

@media (max-width: 900px) {
    .gcz-game-card,
    .gcz-game-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .gcz-game-card__preview {
        width: 100%;
        min-width: 0;
        height: 160px;
        order: 0;
    }
}

.gcz-game-card__tag {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0.5rem;
    background: rgba(0, 245, 255, 0.15);
    color: var(--gcz-cyan);
    font-family: var(--gcz-font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
}

.gcz-game-card h3 {
    font-family: var(--gcz-font-head);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gcz-game-card__desc {
    color: var(--gcz-text-soft);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.gcz-game-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.85rem;
    color: var(--gcz-text-soft);
}

.gcz-game-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
    padding-right: 1.5rem;
}

.gcz-game-card__actions .gcz-btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
    .gcz-game-card__actions { padding-right: 0; padding: 0 1.5rem 1.5rem; flex-direction: row; flex-wrap: wrap; }
}

/* ========== Quick links (unique staggered layout) ========== */
.gcz-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    min-width: 0;
}

.gcz-quick-links .gcz-quick-link:nth-child(1) {
    grid-column: 1;
    margin-right: 20%;
}

.gcz-quick-links .gcz-quick-link:nth-child(2) {
    grid-column: 2;
    margin-top: 24px;
    margin-left: 20%;
}

.gcz-quick-links .gcz-quick-link:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 70%;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .gcz-quick-links {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        max-width: 100%;
        min-width: 0;
    }
    .gcz-quick-links .gcz-quick-link:nth-child(1),
    .gcz-quick-links .gcz-quick-link:nth-child(2),
    .gcz-quick-links .gcz-quick-link:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        margin: 0;
        max-width: none;
    }
}

.gcz-quick-link {
    display: block;
    padding: 1.5rem;
    background: var(--gcz-surface);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    min-width: 0;
}

.gcz-quick-link:hover {
    border-color: var(--gcz-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.15);
}

.gcz-quick-link h3 {
    font-family: var(--gcz-font-head);
    font-size: 1.1rem;
    color: var(--gcz-cyan);
    margin-bottom: 0.5rem;
}

.gcz-quick-link p {
    color: var(--gcz-text-soft);
    font-size: 0.9rem;
}

/* ========== Age notice ========== */
.gcz-age-notice {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
}

.gcz-age-notice p {
    margin-bottom: 1rem;
    color: var(--gcz-text-soft);
}

.gcz-age-notice .gcz-btn { margin: 0 6px; }

/* ========== Page hero (inner pages) ========== */
.gcz-page-hero {
    padding: 100px 24px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gcz-page-hero h1 {
    font-family: var(--gcz-font-head);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.gcz-page-hero p {
    color: var(--gcz-text-soft);
    font-size: 1rem;
}

/* ========== Content (policy, about, etc.) ========== */
.gcz-content {
    max-width: 720px;
    margin: 0 auto;
}

.gcz-content h2 {
    font-family: var(--gcz-font-head);
    font-size: 1.25rem;
    color: var(--gcz-cyan);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.gcz-content h2:first-child { margin-top: 0; }

.gcz-content p {
    margin-bottom: 1rem;
    color: var(--gcz-text-soft);
}

.gcz-content a {
    color: var(--gcz-cyan);
    text-decoration: underline;
}

.gcz-content a:hover { color: var(--gcz-magenta); }

/* ========== FAQ ========== */
.gcz-faq-list { max-width: 720px; margin: 0 auto; }

.gcz-faq-item {
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.gcz-faq-item summary {
    padding: 1rem 1.25rem;
    font-family: var(--gcz-font-head);
    font-weight: 600;
    color: var(--gcz-cyan);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.gcz-faq-item summary::-webkit-details-marker { display: none; }

.gcz-faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.gcz-faq-item[open] summary::after { transform: rotate(45deg); }

.gcz-faq-item summary:hover { background: rgba(0, 245, 255, 0.08); }

.gcz-faq-item__content {
    padding: 0 1.25rem 1rem;
    color: var(--gcz-text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gcz-faq-item__content a { color: var(--gcz-cyan); }

/* ========== Contact form ========== */
.gcz-form {
    max-width: 480px;
    margin: 0 auto;
}

.gcz-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gcz-text-soft);
}

.gcz-form input,
.gcz-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
    color: var(--gcz-text);
    font-family: var(--gcz-font);
    font-size: 1rem;
}

.gcz-form input:focus,
.gcz-form textarea:focus {
    outline: none;
    border-color: var(--gcz-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

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

/* ========== Footer ========== */
.gcz-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--gcz-border);
}

.gcz-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 32px;
}

.gcz-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .gcz-footer__grid { grid-template-columns: 1fr; text-align: center; }
}

.gcz-footer__brand .gcz-logo {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gcz-footer__slogan {
    color: var(--gcz-text-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.gcz-footer__links-title {
    display: block;
    font-family: var(--gcz-font-head);
    font-size: 0.85rem;
    color: var(--gcz-cyan);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.gcz-footer__links a {
    display: block;
    padding: 4px 0;
    color: var(--gcz-text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.gcz-footer__links a:hover { color: var(--gcz-cyan); }

.gcz-footer__disclaimer {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
}

.gcz-footer__disclaimer p {
    font-size: 0.85rem;
    color: var(--gcz-text-soft);
    line-height: 1.6;
}

.gcz-footer__badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.gcz-footer__badge-link {
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.gcz-footer__badge-link:hover { opacity: 1; }

.gcz-footer__badge-link img {
    display: block;
    height: auto;
}

.gcz-footer__bottom {
    padding-top: 1rem;
    border-top: 1px solid var(--gcz-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--gcz-text-soft);
}

/* ========== Games grid (games page) ========== */
.gcz-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 480px) {
    .gcz-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        min-width: 0;
    }
}

.gcz-game-tile {
    background: var(--gcz-surface);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    min-width: 0;
}

@media (max-width: 480px) {
    .gcz-game-tile {
        max-width: 100%;
    }
}

.gcz-game-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.4);
}

.gcz-game-tile__thumb {
    height: 180px;
    min-height: 140px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

@media (max-width: 480px) {
    .gcz-game-tile__thumb {
        height: 160px;
        min-height: 120px;
    }
}

.gcz-game-tile__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcz-game-tile__thumb:empty::after {
    content: '🎰';
    font-size: 4rem;
}

.gcz-game-tile__body {
    padding: 1.5rem;
}

.gcz-game-tile h3 {
    font-family: var(--gcz-font-head);
    font-size: 1.25rem;
    color: var(--gcz-cyan);
    margin-bottom: 0.5rem;
}

.gcz-game-tile p {
    color: var(--gcz-text-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.gcz-game-tile .gcz-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 480px) {
    .gcz-game-tile__body {
        padding: 1rem;
    }
}

/* ========== Achievements ========== */
.gcz-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gcz-achievement {
    text-align: center;
    padding: 1.5rem;
    background: var(--gcz-surface);
    border: 1px solid var(--gcz-border);
    border-radius: var(--gcz-radius);
}

.gcz-achievement__icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gcz-achievement h3 {
    font-family: var(--gcz-font-head);
    font-size: 1rem;
    color: var(--gcz-cyan);
}

.gcz-achievement p {
    font-size: 0.85rem;
    color: var(--gcz-text-soft);
}
