:root {
    --red:        #e50914;
    --red-dim:    rgba(229,9,20,0.15);
    --red-border: rgba(229,9,20,0.35);
    --bg:         #0f0f0f;
    --bg-header:  #141414;
    --bg-card:    #1a1a1a;
    --bg-card2:   #1f1f1f;
    --border:     #2a2a2a;
    --border-lt:  #333;
    --txt:        #e2e2e2;
    --txt-muted:  #888;
    --txt-dim:    #555;
    --link:       #e0e0e0;
    --link-hover: #e50914;
    --radius:     8px;
    --max-w:      1100px;
    --ease:       0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--txt);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

a { color: var(--link); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--link-hover); }

img { max-width: 100%; display: block; }

.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ─── HEADER ─── */
header {
    background: var(--bg-header);
    border-bottom: 2px solid var(--red);
    padding: 14px 0 12px;
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 56px;
    width: auto;
}

.site-logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}
.site-logo-text span { color: var(--red); }

.site-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--txt-muted);
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.3;
}
.site-tagline strong { color: var(--txt); font-weight: 700; }

/* ─── WRAPPER ─── */
.site-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 32px 28px 48px;
}

/* ─── INTRO DESCRIPTION ─── */
.site-description {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.93rem;
    color: var(--txt-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}
.site-description strong { color: var(--txt); }

/* ─── ENTER / CTA BUTTON ─── */
.enter-btn {
    display: block;
    text-align: center;
    margin-bottom: 14px;
}
.enter-btn-el {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 40px;
    border-radius: var(--radius);
    border: 2px solid var(--red);
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(229,9,20,0.3);
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.enter-btn-el:hover,
.enter-btn-el:focus {
    background: #c40812;
    border-color: #c40812;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229,9,20,0.45);
    outline: none;
}
.enter-btn-el:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229,9,20,0.3);
}

.enter-fallback {
    display: none;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--txt-muted);
}
.enter-fallback a {
    color: var(--red);
    text-decoration: underline;
    font-weight: 600;
}
.enter-fallback a:hover { color: #c40812; }
.enter-fallback.visible { display: block; }

/* ─── SOCIAL SHARE BAR ─── */
.share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 22px;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--txt-muted);
    flex: 1;
    min-width: 160px;
}

.share-trigger-wrap {
    position: relative;
}

.share-trigger {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 8px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--ease), box-shadow var(--ease);
    white-space: nowrap;
}
.share-trigger:hover { background: #c40812; box-shadow: 0 4px 14px rgba(229,9,20,0.35); }
.share-trigger[aria-expanded="true"] { background: #c40812; }

.share-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-card2);
    border: 1px solid var(--border-lt);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 180px;
    z-index: 50;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5);
    flex-direction: column;
    gap: 5px;
}
.share-dropdown.open {
    display: flex;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter var(--ease), transform var(--ease);
    white-space: nowrap;
}
.share-btn:hover { filter: brightness(1.15); transform: translateX(3px); color: #fff; }
.share-btn:active { transform: translateX(0); }

.share-btn.tg { background: #2ca5e0; }
.share-btn.tw { background: #000000; }
.share-btn.fb { background: #1877f2; }
.share-btn.rd { background: #ff4500; }
.share-btn.wa { background: #25d366; }
.share-btn.cp { background: #444; }
.share-btn.cp.copied { background: #2e7d32; }

/* ─── DIVIDER ─── */
hr.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 28px 0;
}

/* ─── ARTICLE / BLOG CONTENT ─── */
.article-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--txt-muted);
    line-height: 1.8;
}

.article-box p { margin-bottom: 14px; }
.article-box p:last-child { margin-bottom: 0; }

.article-box h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--txt);
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.article-box h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--txt);
    margin: 20px 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-box h3::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 16px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}

.article-box strong { color: var(--txt); font-weight: 700; }

.article-box ul {
    list-style: none;
    margin: 8px 0 14px 0;
    padding: 0;
}
.article-box ul li {
    padding: 3px 0 3px 18px;
    position: relative;
    color: var(--txt-muted);
}
.article-box ul li::before {
    content: '›';
    color: var(--red);
    font-size: 1.1rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 2px;
}

/* ─── FAQ ─── */
.faq-list { margin-top: 14px; }

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

.faq-q {
    width: 100%; background: var(--bg-card2); border: none;
    color: var(--txt); font-family: 'Lato', sans-serif;
    font-size: 0.9rem; font-weight: 700; text-align: left;
    padding: 12px 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    transition: background var(--ease), color var(--ease);
}
.faq-q:hover { background: #252525; color: var(--red); }

.faq-toggle {
    flex-shrink: 0; width: 20px; height: 20px;
    border: 1px solid var(--border-lt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; line-height: 1; color: var(--txt-muted);
    transition: all var(--ease);
}
.faq-item.open .faq-toggle { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }

.faq-a {
    max-height: 0; overflow: hidden;
    font-size: 0.88rem; color: var(--txt-muted);
    padding: 0 16px; line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.3s ease;
    background: var(--bg-card);
}
.faq-item.open .faq-a { max-height: 160px; padding: 12px 16px; }

/* ─── FEATURE ICONS ─── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center;
    transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.feature-item:hover {
    border-color: var(--red-border);
    background: var(--bg-card2);
    transform: translateY(-2px);
}

.feature-item .f-icon {
    font-size: 2rem;
    line-height: 1;
    margin: 0 auto 12px;
    width: 52px;
    height: 52px;
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .f-title {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 4px;
}

.feature-item .f-desc {
    font-size: 0.76rem;
    color: var(--txt-dim);
    line-height: 1.5;
}

/* ─── FOOTER ─── */
footer {
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    padding: 28px 20px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--txt-dim);
    text-align: center;
    margin-bottom: 6px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--txt-dim);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    gap: 4px;
    padding: 0 12px;
    border-right: 1px solid var(--border);
}
.footer-col:last-child { border-right: none; }

.footer-col a {
    font-size: 0.8rem;
    color: var(--txt-dim);
    transition: color var(--ease);
}
.footer-col a:hover { color: var(--red); }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — 768px (tablets)
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .site-wrap { padding: 20px 14px 32px; }
    .article-box { padding: 18px 16px; }
    .article-box h2 { font-size: 1.15rem; }
    .article-box h3 { font-size: 0.97rem; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .footer-col { min-width: 130px; }
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — 480px (phones)
═══════════════════════════════════════ */
@media (max-width: 480px) {
    header { padding: 10px 0; }
    .site-logo img { height: 42px; }
    .site-logo-text { font-size: 1.6rem; }
    .site-tagline { font-size: 0.82rem; }
    .site-wrap { padding: 16px 12px 28px; }
    .site-description { font-size: 0.88rem; padding: 13px 14px; }

    .enter-btn-el {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .share-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .share-trigger-wrap { width: 100%; }
    .share-trigger { width: 100%; text-align: center; }
    .share-dropdown { left: 0; right: 0; min-width: unset; }

    .article-box { padding: 15px 13px; font-size: 0.88rem; }
    .article-box h2 { font-size: 1.05rem; }
    .article-box h3 { font-size: 0.92rem; }

    .faq-q { font-size: 0.85rem; padding: 11px 13px; }
    .faq-a { font-size: 0.84rem; }

    .feature-grid { gap: 8px; }
    .feature-item { padding: 14px 10px; }
    .feature-item .f-icon { font-size: 1.6rem; width: 44px; height: 44px; }
    .feature-item .f-title { font-size: 0.78rem; }
    .feature-item .f-desc { font-size: 0.72rem; }

    .footer-links { flex-direction: column; align-items: center; gap: 0; }
    .footer-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        min-width: 0;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 10px 0;
        gap: 4px 16px;
    }
    .footer-col:last-child { border-bottom: none; }
    .footer-col a { font-size: 0.78rem; }
    .footer-copy { font-size: 0.75rem; }
    .footer-disclaimer { font-size: 0.71rem; }
}

/* ═══════════════════════════════════════
   VERY SMALL — 360px (small Androids)
═══════════════════════════════════════ */
@media (max-width: 360px) {
    .site-wrap { padding: 12px 10px 24px; }
    .article-box { padding: 13px 11px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
}