*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue-deep: #0a1628;
    --blue-mid: #0046cc;
    --blue-bright: #0080ff;
    --blue-glow: #aeefff;
    --wood-dark: #3e2723;
    --wood-mid: #5d4037;
    --wood-light: #8d6e63;
    --wood-plank: #c4a574;
    --cream: #f5e6c8;
    --cream-light: #fff8ee;
    --green-btn: #66bb6a;
    --green-dark: #43a047;
    --gold: #ffd54f;
    --sky: #29b6f6;
    --red: #ef5350;
    --purple: #ab47bc;
    --text-dark: #3e2723;
    --text-muted: #6d4c41;
    --white: #ffffff;
    --shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    --radius: 16px;
    --panel-width: 230px;
    --frame-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0d2240 50%, #1a1a2e 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 128, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(174, 239, 255, 0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.site-frame {
    position: relative;
    z-index: 1;
    max-width: var(--frame-width);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.45);
}

/* Left sidebar */
.side-panel {
    width: var(--panel-width);
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--blue-deep) 0%, #0d2a5c 60%, var(--blue-mid) 100%);
    border-right: 3px solid var(--blue-bright);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.panel-brand {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(174, 239, 255, 0.15);
    text-align: center;
}

.panel-brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.panel-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 128, 255, 0.5));
}

.panel-studio {
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-glow);
    letter-spacing: 0.5px;
}

.panel-game {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(174, 239, 255, 0.65);
    line-height: 1.3;
}

.panel-cubes {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
}

.mini-cube {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
}

.cube-red { background: #ef5350; }
.cube-blue { background: #42a5f5; }
.cube-green { background: #66bb6a; }
.cube-yellow { background: #ffca28; }
.cube-purple { background: #ab47bc; }

.panel-nav { flex: 1; padding: 8px 12px; }

.panel-nav ul { list-style: none; }

.panel-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 4px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
}

.link-cube {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
    opacity: 0.7;
}

.panel-link i { width: 18px; text-align: center; font-size: 15px; }

.panel-link:hover {
    background: rgba(0, 128, 255, 0.2);
    color: var(--white);
    transform: translateX(3px);
}

.panel-link.is-active {
    background: linear-gradient(90deg, rgba(0, 128, 255, 0.35), rgba(174, 239, 255, 0.1));
    color: var(--white);
    border-left: 3px solid var(--blue-glow);
}

.panel-footer {
    padding: 16px 20px 0;
    border-top: 1px solid rgba(174, 239, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
}

.panel-footer a {
    color: rgba(174, 239, 255, 0.55);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
}

.panel-footer a:hover { color: var(--blue-glow); }

/* Main column */
.main-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(93, 64, 55, 0.04) 48px, rgba(93, 64, 55, 0.04) 49px),
        linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.mobile-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--blue-deep);
    border-bottom: 2px solid var(--blue-bright);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.mobile-brand img { width: 36px; height: 36px; }

.panel-toggle {
    background: rgba(0, 128, 255, 0.25);
    border: 2px solid var(--blue-glow);
    color: var(--blue-glow);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
}

.page-content {
    flex: 1;
    padding: 32px 36px 40px;
}

.site-footer {
    padding: 20px 36px 24px;
    border-top: 2px solid rgba(93, 64, 55, 0.12);
    text-align: center;
    background: rgba(255, 248, 238, 0.6);
}

.footer-nav, .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-bottom: 10px;
}

.footer-nav a, .footer-legal a {
    color: var(--wood-mid);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.footer-nav a:hover, .footer-legal a:hover { color: var(--blue-bright); }

.footer-copy { font-size: 12px; color: var(--text-muted); }

/* Typography */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--wood-dark);
    margin-bottom: 12px;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 24px;
}

.text-link {
    color: var(--blue-bright);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.text-link:hover { color: var(--blue-mid); }

/* Welcome / splash (no hero naming) */
.welcome-stage {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    min-height: 340px;
    display: flex;
    align-items: center;
}

.welcome-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 40px 36px;
    background: linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.55) 55%, transparent 100%);
    color: var(--white);
}

.welcome-badge {
    display: inline-block;
    background: rgba(0, 128, 255, 0.35);
    border: 1px solid var(--blue-glow);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.welcome-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
}

.welcome-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin-bottom: 22px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cta-row a img {
    height: 48px;
    width: auto;
    transition: transform 0.2s;
}

.cta-row a:hover img { transform: scale(1.05); }

/* Stats ribbon */
.stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.stat-chip {
    background: var(--white);
    border: 2px solid rgba(93, 64, 55, 0.12);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.stat-chip .num {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-bright);
}

.stat-chip .lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Home tiles */
.home-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.tile-card {
    background: var(--white);
    border: 2px solid rgba(93, 64, 55, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.tile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.tile-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    color: var(--wood-dark);
    margin-bottom: 10px;
}

.tile-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.tile-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 14px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, var(--green-btn), var(--green-dark));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 0 #2e7d32, 0 6px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.btn-play:hover { transform: translateY(-2px); }

/* Gallery */
.shot-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.shot-gallery img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.25s;
}

.shot-gallery img:hover { transform: scale(1.04); }

/* Company page */
.company-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.company-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}

.company-body {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border-left: 5px solid var(--blue-bright);
    box-shadow: var(--shadow);
}

.company-body p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.quote-block {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.08), rgba(174, 239, 255, 0.15));
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    border-left: 4px solid var(--blue-bright);
    font-style: italic;
    color: var(--wood-mid);
    font-weight: 600;
}

.value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.value-pill {
    background: var(--cream);
    border: 2px solid rgba(93, 64, 55, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--wood-mid);
}

/* Game page */
.game-intro-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.game-intro-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border-top: 4px solid var(--blue-bright);
    transition: transform 0.25s;
}

.feature-card:nth-child(2) { border-top-color: var(--green-btn); }
.feature-card:nth-child(3) { border-top-color: var(--gold); }
.feature-card:nth-child(4) { border-top-color: var(--purple); }
.feature-card:nth-child(5) { border-top-color: var(--sky); }

.feature-card:hover { transform: translateY(-3px); }

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    color: var(--wood-dark);
    margin-bottom: 8px;
}

.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.fi-blue { background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid)); }
.fi-green { background: linear-gradient(135deg, var(--green-btn), var(--green-dark)); }
.fi-gold { background: linear-gradient(135deg, var(--gold), #ffa000); color: var(--wood-dark); }
.fi-purple { background: linear-gradient(135deg, var(--purple), #7b1fa2); }
.fi-sky { background: linear-gradient(135deg, var(--sky), #0288d1); }

.game-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.game-screens img {
    width: 100%;
    border-radius: 14px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.contact-tile {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}

.contact-tile:hover { transform: translateY(-4px); }

.contact-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--white);
}

.icon-loc { background: linear-gradient(135deg, #ef5350, #c62828); }
.icon-mail { background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid)); }
.icon-phone { background: linear-gradient(135deg, var(--green-btn), var(--green-dark)); }

.contact-tile h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    color: var(--wood-dark);
    margin-bottom: 8px;
}

.contact-tile p, .contact-tile a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-tile a:hover { color: var(--blue-bright); }

.contact-map-note {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    text-align: center;
    color: var(--text-muted);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Shop */
.shop-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffebee;
    border: 2px solid #ef5350;
    color: #c62828;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.shop-notes {
    list-style: none;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.shop-notes li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(93, 64, 55, 0.08);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.shop-notes li:last-child { border-bottom: none; }

.shop-notes i { color: var(--gold); margin-top: 3px; }

.currency-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.currency-bar-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--wood-dark);
    font-size: 14px;
}

.currency-switcher { display: flex; flex-wrap: wrap; gap: 8px; }

.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 2px solid rgba(93, 64, 55, 0.15);
    border-radius: 10px;
    background: var(--cream-light);
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    color: var(--wood-mid);
    transition: all 0.2s;
}

.currency-btn.is-active {
    border-color: var(--blue-bright);
    background: rgba(0, 128, 255, 0.1);
    color: var(--blue-mid);
}

.shop-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.shop-panel, .checkout-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.shop-panel h2, .checkout-panel h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    color: var(--wood-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-panel h2 i, .checkout-panel h2 i { color: var(--gold); }

.coin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 480px;
    overflow-y: auto;
}

.coin-card {
    background: var(--cream-light);
    border: 2px solid rgba(93, 64, 55, 0.1);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.coin-card:hover { border-color: var(--blue-bright); transform: translateY(-2px); }

.coin-card.is-selected {
    border-color: var(--green-btn);
    background: rgba(102, 187, 106, 0.1);
    box-shadow: 0 0 0 2px rgba(102, 187, 106, 0.3);
}

.coin-card img { width: 48px; height: 48px; margin-bottom: 8px; }

.coin-card .coin-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--wood-dark);
    margin-bottom: 4px;
}

.coin-card .coin-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: var(--blue-bright);
    font-weight: 700;
}

.coin-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.coin-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 128, 255, 0.2);
    border-top-color: var(--blue-bright);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--wood-dark);
    margin-bottom: 6px;
}

.form-group label .required { color: var(--red); }

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid rgba(93, 64, 55, 0.15);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: var(--cream-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue-bright);
}

.form-group input[readonly] {
    background: #eee;
    color: var(--text-muted);
}

.selected-display {
    padding: 12px 14px;
    background: var(--cream-light);
    border: 2px dashed rgba(93, 64, 55, 0.2);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.selected-display.has-value {
    border-style: solid;
    border-color: var(--green-btn);
    color: var(--wood-dark);
    font-weight: 600;
}

.payment-options { display: flex; flex-direction: column; gap: 8px; }

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 2px solid rgba(93, 64, 55, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.payment-option.is-selected {
    border-color: var(--blue-bright);
    background: rgba(0, 128, 255, 0.06);
}

.payment-option.is-display-only {
    opacity: 0.55;
    cursor: default;
}

.payment-option input { accent-color: var(--blue-bright); }

.payment-option i { font-size: 20px; color: var(--wood-mid); width: 28px; text-align: center; }

.agree-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agree-row input { margin-top: 4px; accent-color: var(--blue-bright); }

.agree-row label { font-size: 13px; color: var(--text-muted); font-weight: 400; }

.agree-row a { color: var(--blue-bright); }

.field-error {
    display: block;
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    min-height: 16px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, var(--green-btn), var(--green-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 0 #2e7d32;
    transition: transform 0.2s;
    margin-top: 8px;
}

.btn-submit:hover:not(:disabled) { transform: translateY(-2px); }

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Confirm / result pages */
.result-panel {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.result-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.result-icon.success { color: var(--green-btn); }
.result-icon.fail { color: var(--red); }

.result-panel h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    color: var(--wood-dark);
    margin-bottom: 12px;
}

.result-panel p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.order-details {
    text-align: left;
    background: var(--cream-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.order-details h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--wood-dark);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(93, 64, 55, 0.08);
    font-size: 14px;
}

.detail-row:last-child { border-bottom: none; }

.detail-row .label { color: var(--text-muted); font-weight: 600; }
.detail-row .value { color: var(--wood-dark); font-weight: 700; text-align: right; max-width: 60%; word-break: break-word; }
.detail-row .value.total { color: var(--blue-bright); font-size: 1.1rem; }

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(180deg, var(--blue-bright), var(--blue-mid));
    color: var(--white);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 0 #003399;
    transition: transform 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--wood-mid);
    color: var(--wood-mid);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-outline:hover { background: rgba(93, 64, 55, 0.06); }

.error-code {
    display: inline-block;
    background: #ffebee;
    color: var(--red);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Page theme accents on sidebar */
.nav-theme-company .panel-link.is-active { border-left-color: var(--blue-glow); }
.nav-theme-game .panel-link.is-active { border-left-color: var(--green-btn); }
.nav-theme-contact .panel-link.is-active { border-left-color: var(--gold); }
.nav-theme-shop .panel-link.is-active { border-left-color: var(--gold); }

/* Responsive */
@media (max-width: 960px) {
    .site-frame { flex-direction: column; }

    .side-panel {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 200;
        transform: translateX(-100%);
        transition: transform 0.3s;
        height: 100vh;
    }

    .side-panel.is-open { transform: translateX(0); }

    .mobile-bar { display: flex; }

    .page-content { padding: 24px 20px 32px; }

    .stats-ribbon { grid-template-columns: repeat(2, 1fr); }
    .home-tiles { grid-template-columns: 1fr; }
    .company-layout { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shot-gallery { grid-template-columns: repeat(3, 1fr); }
    .game-screens { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .shot-gallery { grid-template-columns: repeat(2, 1fr); }
    .coin-grid { grid-template-columns: 1fr; }
}
