/* Minimal informational layout — no animations, no backdrop-filter, flat colors */

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

:root {
    --primary: #e06512;
    --primary-muted: #c55a10;
    --bg: #0b1022;
    --bg-secondary: #121b32;
    --card: #18243e;
    --text: #ffffff;
    --text-muted: #a8b4d4;
    --border: rgba(255, 140, 60, 0.22);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.logo-text {
    color: var(--primary);
}

.logo-update {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.15rem;
    max-width: 14rem;
    line-height: 1.25;
}

@media (min-width: 480px) {
    .logo-update {
        display: inline;
        margin-top: 0;
        margin-left: 0.5rem;
        font-size: 0.7rem;
        max-width: none;
    }
}

.header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    justify-content: flex-end;
    max-width: min(100%, 52rem);
}

.btn-nav {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    background: var(--primary-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
}

.btn-nav:hover,
.btn-nav:focus-visible {
    background: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.hero {
    padding: 3rem 1.5rem 2.5rem;
    text-align: left;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text);
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
    gap: 2rem 2.5rem;
    align-items: center;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
    max-width: 40rem;
    line-height: 1.65;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.hero-figure {
    display: inline-block;
    margin: 0 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    line-height: 0;
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    border-radius: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-card {
    background: var(--card);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--text);
    padding-left: 0.75rem;
    border-left: 4px solid var(--primary);
}

.content-card > section:first-child h2 {
    margin-top: 0;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
    color: var(--text);
}

p {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

ul,
ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

li {
    margin-bottom: 0.65rem;
}

ul li::marker {
    color: var(--primary);
}

.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    font-size: 0.95rem;
}

th {
    background: var(--primary-muted);
    color: var(--text);
    font-weight: 700;
    padding: 0.85rem 0.75rem;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

td {
    padding: 0.85rem 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(255, 130, 60, 0.06);
}

td b {
    color: var(--text);
    font-weight: 600;
}

.slot-showcase {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .slot-showcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .slot-showcase {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.slot-showcase li {
    margin: 0;
    padding: 0;
}

.slot-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0.35rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.slot-showcase img {
    max-height: 3rem;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.pay-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.pay-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.35rem;
}

.pay-strip img {
    height: 26px;
    width: auto;
    max-width: 4.5rem;
    object-fit: contain;
    opacity: 0.92;
}

@media (min-width: 768px) {
    .pay-strip img {
        height: 28px;
        max-width: 5rem;
    }
}

.pay-strip-lead {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

.table-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 1.15rem;
    line-height: 1.55;
}

.site-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.site-footer__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
}

.site-footer__nav {
    margin-bottom: 1.25rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 480px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.site-footer__grid a {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.25rem 0;
}

.site-footer__grid a:hover,
.site-footer__grid a:focus-visible {
    color: var(--primary);
    outline: none;
}

.site-footer__legal {
    margin: 0 0 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 72ch;
}

.site-footer__legal strong {
    color: #c8d0e8;
    font-weight: 600;
}

.site-footer__rg {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.74rem;
    line-height: 1.55;
    color: #8b95b5;
}

.site-footer__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.3rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    background: #9a1e32;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__rg strong {
    color: #aab6d4;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.faq-question {
    cursor: pointer;
    padding: 0.85rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
}

.faq-toggle {
    font-size: 1.35rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-toggle.open {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    color: var(--text-muted);
}

.faq-answer p {
    padding: 0.75rem 0 1rem;
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-areas: "visual" "text";
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-figure {
        margin: 0 auto;
        max-width: min(340px, 92vw);
    }

    .hero-image {
        max-width: min(340px, 92vw);
    }

    .content-card {
        padding: 1.5rem 1.15rem;
    }

    table {
        font-size: 0.82rem;
    }

    th,
    td {
        padding: 0.6rem 0.45rem;
    }

    .header-actions {
        justify-content: center;
        width: 100%;
    }
}
