/* ================================================
   ESPORTS PAGE — PREMIUM REDESIGN
   ================================================ */

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 11, 29, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; color: var(--primary);
    font-size: 2rem; cursor: pointer; line-height: 1;
    padding: 0.5rem; min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-nav-links a {
    font-family: var(--font-heading); font-size: 1.25rem;
    color: var(--text-primary); text-transform: uppercase; letter-spacing: 2px;
    padding: 0.5rem 1rem;
}
.mobile-nav-links a.active, .mobile-nav-links a:hover { color: var(--primary); }

/* ---- UTILITIES ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.accent { color: var(--accent); font-weight: bold; }
.btn-hero { padding: 1rem 2.5rem; font-size: 1rem; letter-spacing: 1px; }

/* ================================================
   HERO
   ================================================ */
.es-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}

/* animated particles */
.es-hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.es-hero-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0.4;
}
.es-hero-particles span:nth-child(1)  { width:4px;height:4px;background:var(--primary);left:10%;top:20%;animation-duration:8s;animation-delay:0s; }
.es-hero-particles span:nth-child(2)  { width:6px;height:6px;background:var(--secondary);left:80%;top:60%;animation-duration:10s;animation-delay:1s; }
.es-hero-particles span:nth-child(3)  { width:3px;height:3px;background:var(--accent);left:55%;top:10%;animation-duration:7s;animation-delay:2s; }
.es-hero-particles span:nth-child(4)  { width:5px;height:5px;background:var(--primary);left:30%;top:80%;animation-duration:12s;animation-delay:0.5s; }
.es-hero-particles span:nth-child(5)  { width:4px;height:4px;background:var(--secondary);left:70%;top:30%;animation-duration:9s;animation-delay:3s; }
.es-hero-particles span:nth-child(6)  { width:6px;height:6px;background:var(--accent);left:20%;top:50%;animation-duration:11s;animation-delay:1.5s; }
.es-hero-particles span:nth-child(7)  { width:3px;height:3px;background:var(--primary);left:90%;top:75%;animation-duration:6s;animation-delay:2.5s; }
.es-hero-particles span:nth-child(8)  { width:5px;height:5px;background:var(--secondary);left:45%;top:45%;animation-duration:13s;animation-delay:0.8s; }

@keyframes floatParticle {
    0%   { transform: translateY(0) scale(1); opacity: 0.4; }
    50%  { opacity: 0.8; transform: translateY(-30px) scale(1.3); }
    100% { transform: translateY(0) scale(1); opacity: 0.4; }
}

.es-hero-glow {
    position: absolute; width: 600px; height: 600px; border-radius: 50%; pointer-events: none; z-index: 0;
    filter: blur(120px);
}
.glow-left  { background: rgba(20,224,255,0.12); left: -200px; top: 50%; transform: translateY(-50%); }
.glow-right { background: rgba(255,47,208,0.10); right: -200px; top: 30%; }

.es-hero-body {
    position: relative; z-index: 2;
    padding: 5rem 20px 4rem;
    max-width: 780px;
}
.es-hero-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(20,224,255,0.08); border: 1px solid rgba(20,224,255,0.3);
    color: var(--primary); padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-family: var(--font-heading); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 1.5rem;
}
.dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 1.5s infinite; flex-shrink: 0; }
.es-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1; margin-bottom: 1.25rem;
    color: var(--text-primary);
    text-shadow: 0 0 60px rgba(20,224,255,0.2);
}
.es-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary); max-width: 620px; margin-bottom: 2.5rem; line-height: 1.7;
}
.es-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.es-hero-stats {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    padding: 1.25rem 2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; backdrop-filter: blur(10px);
    width: fit-content;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.hero-stat strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary); line-height: 1; }
.hero-stat span { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.25rem; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ================================================
   HOW TO START
   ================================================ */
.steps-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.steps-line {
    position: absolute;
    top: 40px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.4;
    z-index: 0;
}
.step-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; z-index: 1;
}
.step-bubble {
    position: relative;
    width: 80px; height: 80px;
    background: var(--surface);
    border-radius: 50%;
    border: 2px solid rgba(20,224,255,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(20,224,255,0.3);
}
.step-item:hover .step-bubble {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(20,224,255,0.08), 0 0 30px rgba(20,224,255,0.2);
}
.step-ico { font-size: 1.8rem; line-height: 1; }
.step-num-badge {
    position: absolute; top: -6px; right: -6px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--secondary); color: #fff;
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
}
.step-text h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.4rem; }
.step-text p { font-size: 0.875rem; margin: 0; }

/* Register Box */
.es-register-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,212,71,0.3);
    background: var(--surface);
}
.register-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255,212,71,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.register-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative; z-index: 1;
}
.register-left {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}
.register-badge {
    display: inline-block;
    background: rgba(255,212,71,0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}
.register-left h3 { color: var(--accent); margin-bottom: 0.75rem; font-size: 1.5rem; }
.register-left > p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.register-perks { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.register-perks li { font-size: 0.875rem; color: var(--text-secondary); }
.register-perks li::before { display: none; }
.register-form-right { padding: 2.5rem 2rem; }
.register-form-right .form-group { margin-bottom: 1.25rem; }
.register-form-right label { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; color: var(--primary); font-weight: bold; }
.register-form-right input {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--bg); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; border-radius: 6px; font-size: 0.95rem;
    transition: var(--transition);
}
.register-form-right input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(20,224,255,0.1); }
.register-success {
    margin-top: 1rem; padding: 0.75rem 1rem;
    background: rgba(0,200,120,0.15); border: 1px solid rgba(0,200,120,0.4);
    border-radius: 6px; color: #00C878; text-align: center; font-weight: bold;
}
.form-note { font-size: 0.75rem; color: rgba(168,188,215,0.6); margin-top: 0.75rem; text-align: center; }
.form-note a { color: var(--primary); }

/* ================================================
   GAME CARDS
   ================================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(20,224,255,0.12);
    border-color: var(--primary);
}

/* Card media */
.game-card-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0a0d1f;
}
.game-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
}
.game-card:hover .game-card-media img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Shine effect */
.game-card-shine {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Badges */
.game-card-badges {
    position: absolute; top: 0.75rem; left: 0.75rem;
    display: flex; gap: 0.4rem; z-index: 3;
    flex-wrap: wrap;
}
.gc-badge {
    padding: 0.25rem 0.6rem; border-radius: 4px;
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.gc-badge-slot    { background: rgba(20,224,255,0.9); color: #090B1D; }
.gc-badge-esports { background: rgba(255,47,208,0.9); color: #fff; }
.gc-badge-hot     { background: rgba(255,100,0,0.9); color: #fff; }
.gc-badge-new     { background: rgba(255,212,71,0.9); color: #090B1D; }
.gc-badge-tournament { background: rgba(0,200,120,0.85); color: #fff; }

/* Play overlay */
.game-card-play-overlay {
    position: absolute; inset: 0; z-index: 4;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.35s ease;
}
.game-card:hover .game-card-play-overlay { opacity: 1; }
.gc-play-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary); color: var(--bg);
    padding: 0.85rem 1.75rem; border-radius: 50px;
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(20,224,255,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.gc-play-btn:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(20,224,255,0.8); color: var(--bg); }

/* Card body */
.game-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gcb-top {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem;
}
.gcb-top h3 { font-size: 1.15rem; color: #fff; margin: 0; line-height: 1.2; }
.gc-stars { color: var(--accent); font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }
.gc-desc {
    font-size: 0.875rem; color: var(--text-secondary); margin: 0;
    flex-grow: 1; line-height: 1.6;
}
.gc-meta {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.gc-meta-item {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px; padding: 0.25rem 0.6rem;
    font-size: 0.75rem; color: var(--text-secondary);
    white-space: nowrap;
}
.gc-cta {
    margin-top: auto;
    animation: none !important; /* override btn-primary pulse on cards */
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
}
.gc-cta:hover { color: var(--bg) !important; }

/* ================================================
   WHAT AWAITS
   ================================================ */
.awaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.awaits-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.awaits-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ico-color, var(--primary)), transparent);
    opacity: 0;
    transition: var(--transition);
}
.awaits-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.awaits-card:hover::before { opacity: 1; }
.awaits-icon-wrap {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.awaits-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.6rem; }
.awaits-card p { font-size: 0.875rem; margin: 0; line-height: 1.6; }

/* ================================================
   SOCIAL MEDIA DECK
   ================================================ */
.socials-header { text-align: center; margin-bottom: 2.5rem; }
.socials-header h2 { margin-bottom: 0.75rem; }
.socials-deck {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.sd-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: var(--surface);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.sd-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.sd-card:hover { transform: translateY(-4px); color: #fff; }
.sd-tg:hover  { border-color: #29b5e8; box-shadow: 0 8px 30px rgba(41,181,232,0.15); }
.sd-dc:hover  { border-color: #7289da; box-shadow: 0 8px 30px rgba(114,137,218,0.15); }
.sd-vk:hover  { border-color: #4a76a8; box-shadow: 0 8px 30px rgba(74,118,168,0.15); }
.sd-yt:hover  { border-color: #ff4444; box-shadow: 0 8px 30px rgba(255,68,68,0.15); }

.sd-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sd-tg .sd-icon { background: rgba(41,181,232,0.15); color: #29b5e8; }
.sd-dc .sd-icon { background: rgba(114,137,218,0.15); color: #7289da; }
.sd-vk .sd-icon { background: rgba(74,118,168,0.15); color: #4a76a8; }
.sd-yt .sd-icon { background: rgba(255,68,68,0.15); color: #ff4444; }

.sd-info { display: flex; flex-direction: column; flex-grow: 1; }
.sd-info strong { font-family: var(--font-heading); font-size: 0.9rem; color: #fff; }
.sd-info span { font-size: 0.8rem; color: var(--text-secondary); }
.sd-arrow { color: var(--text-secondary); font-size: 1.2rem; transition: transform 0.2s ease; }
.sd-card:hover .sd-arrow { transform: translateX(4px); color: #fff; }

/* ================================================
   SAFETY / 18+ BLOCK
   ================================================ */
.safety-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: var(--bg);
    border: 1px solid rgba(255,47,208,0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.safety-inner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at left center, rgba(255,47,208,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.safety-age {
    display: flex; align-items: center; gap: 1.25rem;
    flex-shrink: 0;
}
.age-ring {
    width: 90px; height: 90px; border-radius: 50%;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 30px rgba(255,47,208,0.4), inset 0 0 20px rgba(255,47,208,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.age-ring span {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
    color: var(--secondary); line-height: 1;
}
.age-ring sup {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 900;
    color: var(--secondary); position: absolute; top: 16px; right: 14px;
}
.safety-age-text strong { color: #fff; font-family: var(--font-heading); font-size: 1rem; display: block; margin-bottom: 0.4rem; }
.safety-age-text p { margin: 0; font-size: 0.85rem; max-width: 260px; }
.safety-divider {
    width: 1px; height: 80px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.safety-logos { flex-grow: 1; }
.safety-logos-label { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family: var(--font-heading); }
.safety-logo-row {
    display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.safety-logo-link {
    display: block; transition: var(--transition); opacity: 0.85; border-radius: 6px; overflow: hidden;
}
.safety-logo-link:hover { opacity: 1; transform: translateY(-2px); filter: drop-shadow(0 4px 12px rgba(255,255,255,0.1)); }
.safety-logo-link img { display: block; height: 46px; width: auto; max-width: 180px; }

/* ================================================
   DISCLAIMER
   ================================================ */
.es-disclaimer {
    background: #030408;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.es-disclaimer p {
    font-size: 0.78rem;
    color: rgba(168,188,215,0.45);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}
.es-disclaimer p:last-child { margin-bottom: 0; }
.es-disclaimer strong { color: rgba(168,188,215,0.65); }
.es-disclaimer a { color: rgba(20,224,255,0.6); }
.es-disclaimer a:hover { color: var(--primary); }

/* ================================================
   FAQ STYLED
   ================================================ */
.faq-styled .faq-item {
    border: 1px solid rgba(20,224,255,0.1);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: border-color 0.3s ease;
}
.faq-styled .faq-item[open] { border-color: rgba(20,224,255,0.35); }
.faq-styled .faq-item summary { padding: 1.25rem 1.5rem; }

/* ================================================
   ESPORTS PAGE — АДАПТИВНОСТЬ
   (глобальные grid-фиксы — в styles.css)
   ================================================ */

/* --- Телефон до 599px --------------------------- */
@media (max-width: 599px) {
    .es-hero { min-height: 60vh; }
    .es-hero-body { padding: 2.5rem 0 2rem; }
    .es-hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .es-hero-sub { font-size: 0.9rem; }
    .es-hero-label { font-size: 0.7rem; }
    .es-hero-cta { flex-direction: column; gap: 0.6rem; }
    .es-hero-cta .btn { width: 100%; justify-content: center; }
    .es-hero-stats { flex-direction: column; gap: 0.5rem; padding: 0.75rem; width: 100%; }
    .hero-stat-sep { width: 60px; height: 1px; }
    .hero-stat strong { font-size: 1.1rem; }

    .steps-track { grid-template-columns: 1fr; gap: 1.25rem; }
    .steps-line { display: none; }
    .step-bubble { width: 64px; height: 64px; }
    .step-ico { font-size: 1.4rem; }

    .register-inner { grid-template-columns: 1fr; }
    .register-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.25rem; }
    .register-form-right { padding: 1.25rem; }
    .register-left h3 { font-size: 1.15rem; }

    .game-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
    .game-card-body { padding: 0.875rem; }
    .gcb-top h3 { font-size: 0.9rem; }
    .gc-desc { font-size: 0.78rem; }
    .gc-meta { gap: 0.25rem; }
    .gc-meta-item { font-size: 0.68rem; padding: 0.2rem 0.4rem; }

    .awaits-grid { grid-template-columns: 1fr; }
    .awaits-card { padding: 1.25rem; }
    .awaits-icon-wrap { width: 44px; height: 44px; font-size: 1.4rem; }

    .socials-deck { grid-template-columns: 1fr; }

    .safety-inner { flex-direction: column; gap: 1.25rem; padding: 1.25rem; text-align: center; }
    .safety-age { flex-direction: column; align-items: center; }
    .age-ring { width: 72px; height: 72px; }
    .age-ring span { font-size: 1.6rem; }
    .safety-divider { width: 60px; height: 1px; }
    .safety-logo-row { justify-content: center; gap: 0.75rem; }
    .safety-logo-link img { height: 34px; }
}

/* --- Маленький телефон 600–767px ---------------- */
@media (min-width: 600px) and (max-width: 767px) {
    .es-hero-cta { flex-direction: row; flex-wrap: wrap; }
    .es-hero-stats { width: 100%; }
    .steps-track { grid-template-columns: repeat(2, 1fr); }
    .steps-line { display: none; }
    .game-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .awaits-grid { grid-template-columns: repeat(2, 1fr); }
    .socials-deck { grid-template-columns: repeat(2, 1fr); }
    .register-inner { grid-template-columns: 1fr; }
    .register-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .safety-inner { flex-direction: column; text-align: center; }
    .safety-logo-row { justify-content: center; }
    .safety-divider { width: 80px; height: 1px; }
}

/* --- Планшет 768–1023px ------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
    .steps-track { grid-template-columns: repeat(2, 1fr); }
    .steps-line { display: none; }
    .game-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .awaits-grid { grid-template-columns: repeat(2, 1fr); }
    .socials-deck { grid-template-columns: repeat(2, 1fr); }
    .register-inner { grid-template-columns: 1fr; }
    .register-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .safety-inner { flex-wrap: wrap; gap: 2rem; }
    .safety-divider { display: none; }
    .safety-logo-row { justify-content: flex-start; }
}

/* --- Десктоп ≥ 1024px --------------------------- */
@media (min-width: 1024px) {
    .game-cards-grid { grid-template-columns: repeat(4, 1fr); }
    .awaits-grid { grid-template-columns: repeat(4, 1fr); }
    .socials-deck { grid-template-columns: repeat(4, 1fr); }
    .register-inner { grid-template-columns: 1fr 1fr; }
}
