/* Sub page — проверка ключа */

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #0ea5e9;

    --bg-main: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 30%, #0f172a 60%, #1e293b 100%);
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;

    --card-bg: rgba(15, 23, 42, 0.82);
    --card-border: rgba(99, 102, 241, 0.28);
    --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 80px rgba(99, 102, 241, 0.18);

    --header-bg: rgba(15, 23, 42, 0.92);
    --header-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: var(--bg-main);
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bg-decoration {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.16;
    animation: floatLight 16s infinite alternate ease-in-out;
}

.bg-circle-1 {
    width: 360px;
    height: 360px;
    background: #6366f1;
    left: -80px;
    top: 10vh;
}

.bg-circle-2 {
    width: 280px;
    height: 280px;
    background: #10b981;
    right: -60px;
    top: 35vh;
    animation-delay: 3s;
}

.bg-circle-3 {
    width: 220px;
    height: 220px;
    background: #8b5cf6;
    left: 40%;
    bottom: 8vh;
    animation-delay: 6s;
}

@keyframes floatLight {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-36px) scale(1.06); }
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.header-spacer {
    width: 148px;
    flex-shrink: 0;
}

.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    min-width: 148px;
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.lang-btn.active {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.brand-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.brand-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #fff;
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.12);
    transform: translateY(-1px);
}

.page {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}

.hero {
    text-align: center;
    margin-bottom: 36px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.14);
    border: 1px solid rgba(99, 102, 241, 0.28);
    color: #c7d2fe;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-title span[data-i18n="hero_title_accent"] {
    background: linear-gradient(135deg, #818cf8, #a78bfa, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.search-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(16px);
    margin-bottom: 24px;
}

.search-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.search-row {
    display: flex;
    gap: 12px;
}

.search-input-wrap {
    flex: 1;
    position: relative;
}

.search-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 46px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.75);
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.55);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.search-input::placeholder {
    color: #64748b;
}

.search-btn {
    min-width: 140px;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(99, 102, 241, 0.45);
}

.search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.search-hint {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

.result-card {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(16px);
    animation: fadeUp 0.4s ease;
}

.result-card.is-visible {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.game-logo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.2);
}

.game-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-title-block {
    flex: 1;
    min-width: 0;
}

.result-game-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.status-badge.unused {
    background: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
    border: 1px solid rgba(14, 165, 233, 0.35);
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.status-badge.banned {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.info-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.info-value {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
    word-break: break-all;
}

.info-value.key-value {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.82rem;
    color: #c7d2fe;
}

.actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.action-btn {
    min-height: 58px;
    border: none;
    border-radius: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.action-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.action-btn.instruction {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.action-btn.download {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    min-height: 62px;
    font-size: 1rem;
}

.empty-state,
.error-state {
    display: none;
    text-align: center;
    padding: 48px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.empty-state.is-visible,
.error-state.is-visible {
    display: block;
    animation: fadeUp 0.35s ease;
}

.state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.empty-state .state-icon {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
}

.error-state .state-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.state-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.state-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 3000;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
    max-width: calc(100vw - 32px);
}

.toast.is-visible {
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
}

.toast.error {
    background: rgba(239, 68, 68, 0.95);
    color: #fff;
}

.instruction-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}

.instruction-modal.is-open {
    display: flex;
}

.instruction-dialog {
    width: min(920px, 100%);
    height: min(88vh, 860px);
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    animation: modalIn 0.28s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.instruction-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.instruction-dialog-title {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instruction-dialog-title i {
    color: #38bdf8;
}

.instruction-close {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.instruction-close:hover {
    background: rgba(239, 68, 68, 0.25);
}

.instruction-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 22px 28px;
    background: #0b1220;
}

.instruction-step {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.instruction-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.instruction-step-content {
    flex: 1;
    min-width: 0;
}

.instruction-step-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.instruction-step-content ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.instruction-step-content li {
    position: relative;
    padding: 10px 12px 10px 28px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.45;
}

.instruction-step-content li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #818cf8;
}

.instruction-step-content li.is-danger {
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(127, 29, 29, 0.25);
    font-weight: 700;
}

.instruction-step-content li.is-danger::before {
    background: #ef4444;
}

.instruction-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 48px 16px;
    font-size: 0.95rem;
}

.footer-note {
    margin-top: 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-note a {
    color: #a5b4fc;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .page {
        padding-top: 32px;
    }

    .header-inner {
        height: auto;
        min-height: 64px;
        padding: 10px 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-spacer {
        display: none;
    }

    .language-selector {
        order: -1;
        width: 100%;
        justify-content: center;
        min-width: 0;
    }

    .search-row {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .result-header {
        flex-direction: column;
        text-align: center;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-value {
        text-align: left;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }
}

/* CourierScript premium refresh */
:root {
    --primary: #7c5cff;
    --primary-light: #a78bfa;
    --primary-dark: #5b3fd6;
    --bg-main: #070914;
    --card-bg: rgba(16, 20, 39, 0.78);
    --card-border: rgba(167, 139, 250, 0.2);
    --card-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 80px rgba(124, 92, 255, 0.12);
}

body {
    background:
        radial-gradient(900px 520px at 50% -12%, rgba(124, 92, 255, 0.2), transparent 68%),
        radial-gradient(600px 500px at 100% 55%, rgba(14, 165, 233, 0.09), transparent 72%),
        #070914;
    animation: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.bg-circle { filter: blur(110px); opacity: .11; }
.bg-circle-1 { background: #7c5cff; }
.bg-circle-2 { background: #22d3ee; }
.bg-circle-3 { background: #c084fc; }

.header {
    background: rgba(7, 9, 20, 0.72);
    border-bottom-color: rgba(255,255,255,.07);
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
}

.header-inner {
    max-width: 1120px;
    height: 76px;
}

.brand { order: 2; }
.language-selector { order: 1; min-width: 154px; }
.header-spacer { order: 3; width: 154px; }
.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, #8b5cf6, #06b6d4);
    box-shadow: 0 12px 32px rgba(124,92,255,.34);
}
.brand-text strong { font-size: 1.1rem; }
.brand-text span::after {
    content: '  •  secure access';
    color: #64748b;
    font-size: .7rem;
    font-weight: 600;
}

.page {
    max-width: 1060px;
    padding: 78px 24px 88px;
}

.hero {
    max-width: 760px;
    margin: 0 auto 34px;
}
.hero-badge {
    padding: 9px 15px;
    background: rgba(124,92,255,.1);
    border-color: rgba(167,139,250,.28);
    box-shadow: 0 8px 28px rgba(124,92,255,.1);
}
.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.35rem);
    letter-spacing: -.055em;
    margin-bottom: 18px;
}
.hero-subtitle {
    max-width: 600px;
    font-size: 1.04rem;
    color: #a4acc4;
}

.search-card,
.result-card,
.empty-state,
.error-state {
    border-radius: 26px;
    border-color: rgba(167,139,250,.22);
    background:
        linear-gradient(145deg, rgba(24, 29, 55, .9), rgba(11, 15, 31, .78)),
        var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(22px) saturate(140%);
}

.search-card {
    max-width: 820px;
    margin: 0 auto 24px;
    padding: 10px;
    position: relative;
}
.search-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(110deg, rgba(124,92,255,.6), transparent 38%, rgba(34,211,238,.35));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}
.search-label {
    padding: 13px 16px 7px;
    color: #c4b5fd;
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.search-row { gap: 8px; }
.search-input-wrap i { left: 18px; color: #8b7cf6; }
.search-input {
    height: 62px;
    border-radius: 17px;
    border-color: rgba(255,255,255,.08);
    background: rgba(4,7,17,.62);
    padding-left: 50px;
    font-size: 1rem;
}
.search-input:focus {
    border-color: rgba(139,124,246,.72);
    box-shadow: 0 0 0 4px rgba(124,92,255,.13), 0 8px 30px rgba(124,92,255,.12);
}
.search-btn {
    height: 62px;
    min-width: 154px;
    border-radius: 17px;
    background: linear-gradient(135deg, #7c5cff, #a855f7 55%, #06b6d4);
    box-shadow: 0 12px 30px rgba(124,92,255,.28);
}

.empty-state,
.error-state {
    max-width: 820px;
    margin: 0 auto;
    padding: 55px 28px;
}
.state-icon {
    width: 82px;
    height: 82px;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(124,92,255,.24), rgba(34,211,238,.1));
    box-shadow: inset 0 0 0 1px rgba(167,139,250,.16), 0 18px 40px rgba(124,92,255,.14);
}
.state-title { font-size: 1.35rem; }
.state-text { max-width: 460px; margin: 0 auto; }

.result-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 12px;
}
.result-header {
    margin: 0 0 10px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(124,92,255,.13), rgba(34,211,238,.04));
}
.game-logo-wrap {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    border-color: rgba(167,139,250,.35);
}
.result-game-name { font-size: 1.55rem; }
.info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 10px 0;
}
.info-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    min-height: 94px;
    padding: 16px;
    border-radius: 17px;
    background: rgba(4,7,17,.44);
    border-color: rgba(255,255,255,.07);
}
.info-value { text-align: left; }
.info-value.key-value { font-size: .75rem; }
.actions-grid { padding: 4px 0 0; }
.action-btn.download {
    min-height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    box-shadow: 0 14px 32px rgba(16,185,129,.2);
}

.toast {
    bottom: 30px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
}

@media (max-width: 700px) {
    .header-inner { height: auto; min-height: 72px; }
    .brand { order: 1; }
    .language-selector { order: 2; min-width: 0; }
    .header-spacer { display: none; }
    .brand-text span::after { display: none; }
    .page { padding: 48px 16px 64px; }
    .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
    .search-card { padding: 8px; }
    .search-row { flex-direction: column; }
    .search-btn { width: 100%; }
    .info-grid { grid-template-columns: 1fr; }
    .info-row { min-height: 0; }
    .result-header { flex-direction: row; text-align: left; padding: 16px; }
    .game-logo-wrap { width: 68px; height: 68px; }
}
