:root {
    --bg: #07110f;
    --panel: #0c1916;
    --panel-2: #10211d;
    --line: rgba(194, 255, 111, .14);
    --muted: #91a69f;
    --text: #f2f7f4;
    --lime: #baff63;
    --red: #ff3f5f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #020806; }
body {
    margin: 0;
    min-width: 320px;
    background: radial-gradient(circle at 12% 0%, rgba(83,255,137,.09), transparent 28rem), radial-gradient(circle at 100% 16%, rgba(255,63,95,.08), transparent 25rem), #020806;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-frame {
    position: relative;
    width: min(100%, 820px);
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 142px;
    border-inline: 1px solid rgba(186,255,99,.07);
    background: linear-gradient(rgba(7,17,15,.97),rgba(7,17,15,.97)), repeating-linear-gradient(90deg,transparent 0 47px,rgba(186,255,99,.025) 48px);
    box-shadow: 0 0 80px rgba(0,0,0,.45);
}

.top-ticker,.bottom-ticker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    padding: 7px 18px;
    background: var(--lime);
    color: #082015;
    font-size: 12px;
}
.top-ticker>span:nth-child(2) { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.top-ticker a,.bottom-ticker a { border-bottom: 1px solid rgba(8,32,21,.45); font-weight: 850; }
.ticker-spark { font-size: 15px; }

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
    padding: 14px clamp(17px,4vw,30px);
    border-bottom: 1px solid var(--line);
    background: rgba(7,17,15,.82);
    backdrop-filter: blur(14px);
}
.brand-mark,.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-symbol {
    display: grid;
    place-items: center;
    width: 38px;
    aspect-ratio: 1;
    border-radius: 12px 4px 12px 4px;
    background: var(--lime);
    box-shadow: 5px 5px 0 rgba(255,63,95,.85);
    color: #07110f;
    font-size: 24px;
    font-weight: 900;
}
.brand-copy { display: flex; flex-direction: column; line-height: .9; }
.brand-copy strong { font-size: 17px; letter-spacing: .04em; }
.brand-copy small { margin-top: 5px; color: var(--lime); font-size: 9px; letter-spacing: .38em; }
.filter-nav { display: flex; gap: 6px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: #091512; }
.filter-link { padding: 9px 12px; border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 750; white-space: nowrap; }
.filter-link.active { background: var(--lime); color: #07110f; }

.intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(34px,7vw,64px) clamp(18px,5vw,38px) 30px;
}
.overline,.section-kicker { margin: 0 0 10px; color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .22em; }
.overline span { display: inline-block; width: 22px; height: 2px; margin: 0 8px 3px 0; background: var(--red); }
.intro h1 { margin: 0; font-size: clamp(34px,7vw,58px); line-height: .98; letter-spacing: -.055em; }
.intro h1 em { color: var(--lime); font-style: normal; }
.verified-pill { flex: 0 0 auto; margin-bottom: 5px; padding: 9px 11px; border: 1px solid rgba(186,255,99,.22); border-radius: 10px; color: #bfd0c9; font-size: 10px; }
.verified-pill b { display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 5px; border-radius: 50%; background: var(--lime); color: #08140f; }

.premium-section,.trend-section,.articles { scroll-margin-top: 20px; padding: 20px clamp(14px,4vw,30px); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin: 0 4px 17px; }
.section-heading.compact { align-items: center; }
.section-heading h2 { margin: 0; font-size: clamp(23px,4vw,31px); line-height: 1; letter-spacing: -.04em; }
.section-heading .section-kicker { margin-bottom: 8px; color: var(--red); }
.live-label { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.live-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255,63,95,.1); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255,63,95,0); } }

.premium-list { display: grid; gap: 10px; }
.premium-card {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 154px;
    overflow: hidden;
    padding: 21px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px 7px 22px 7px;
}
.premium-card.magenta { background: linear-gradient(112deg,#9c164a 0%,#e63477 55%,#6e1638 100%); }
.premium-card.red { background: linear-gradient(112deg,#741b27 0%,#df334b 55%,#53141c 100%); }
.premium-card.green { background: linear-gradient(112deg,#0b4a35 0%,#13825b 56%,#0b3628 100%); }
.premium-card:before { content: ""; position: absolute; z-index: -1; right: 12%; top: -95%; width: 230px; height: 230px; border: 35px solid rgba(255,255,255,.08); border-radius: 50%; }
.card-grid { position: absolute; z-index: -1; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg,transparent,#000); }
.premium-copy { display: flex; flex-direction: column; align-items: flex-start; }
.ad-eyebrow { margin-bottom: 9px; padding: 5px 8px; border-radius: 5px; background: var(--lime); color: #07110f; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.premium-copy>strong { font-size: clamp(27px,6vw,43px); line-height: .9; letter-spacing: -.065em; text-shadow: 0 3px 0 rgba(0,0,0,.12); }
.premium-copy p { margin: 8px 0 3px; font-size: clamp(17px,4vw,25px); font-weight: 850; line-height: 1; text-transform: uppercase; }
.premium-copy small { color: rgba(255,255,255,.72); font-size: 10px; }
.premium-action { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; min-width: 92px; }
.ad-number { color: rgba(255,255,255,.52); font-size: 13px; font-weight: 800; }
.premium-action a,.bonus-button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 12px; border-radius: 9px; background: #fff; color: #07110f; font-size: 10px; font-weight: 900; white-space: nowrap; }
.premium-action a b { font-size: 13px; }

.trend-section { margin-top: 8px; }
.all-link { color: var(--muted); font-size: 10px; font-weight: 750; }
.all-link span { margin-left: 5px; color: var(--lime); font-size: 15px; }
.trend-list { overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: var(--panel); }
.trend-row { display: grid; grid-template-columns: 24px 45px minmax(0,1fr) auto; align-items: center; gap: 11px; min-height: 74px; padding: 10px 13px; border-bottom: 1px solid rgba(186,255,99,.1); }
.trend-row:last-child { border-bottom: 0; }
.rank { color: #536961; font-size: 10px; font-weight: 800; }
.site-badge { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px 4px 12px 4px; color: #fff; font-size: 12px; font-weight: 900; }
.badge-1 { background: #105c3d; }.badge-2 { background: #157ba3; }.badge-3 { background: #7e4c12; }.badge-4 { background: #80273a; }.badge-5 { background: #4a2780; }
.site-info { min-width: 0; }
.site-info h3 { margin: 0 0 5px; font-size: 15px; line-height: 1; }
.site-info p { overflow: hidden; margin: 0; color: var(--muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.site-info p strong { color: var(--lime); }
.bonus-button { background: var(--lime); }

.editor-note { display: flex; gap: 13px; margin: 20px clamp(18px,5vw,34px); padding: 17px; border: 1px solid rgba(255,63,95,.22); border-radius: 16px; background: linear-gradient(105deg,rgba(255,63,95,.1),rgba(255,63,95,.025)); }
.note-icon { display: grid; place-items: center; flex: 0 0 35px; height: 35px; border-radius: 50%; background: var(--red); color: #07110f; font-weight: 900; }
.editor-note strong { font-size: 13px; }
.editor-note p { margin: 6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.articles { padding-top: 28px; }
.article-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--panel); }
.article-visual { position: relative; display: flex; align-items: flex-start; min-height: 108px; overflow: hidden; padding: 14px; background: linear-gradient(135deg,#24362f,#101a17); }
.article-visual:after { content: ""; position: absolute; right: -32px; bottom: -70px; width: 125px; height: 125px; border: 22px solid var(--lime); border-radius: 50%; opacity: .23; }
.visual-2:after { border-color: var(--red); }
.article-visual span { z-index: 1; padding: 5px 7px; border-radius: 5px; background: var(--lime); color: #07110f; font-size: 8px; font-weight: 900; }
.article-visual b { position: absolute; right: 13px; bottom: 5px; color: rgba(255,255,255,.1); font-size: 53px; line-height: 1; }
.article-body { padding: 15px; }
.article-body small { color: var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.article-body h3 { min-height: 58px; margin: 7px 0 11px; font-size: 14px; line-height: 1.35; }
.article-body a { color: var(--lime); font-size: 9px; font-weight: 850; }

.site-footer { display: flex; flex-direction: column; align-items: center; margin-top: 34px; padding: 38px 20px 30px; border-top: 1px solid var(--line); text-align: center; }
.site-footer .brand-symbol { width: 31px; font-size: 18px; box-shadow: 4px 4px 0 rgba(255,63,95,.85); }
.footer-brand strong { font-size: 15px; letter-spacing: .04em; }
.site-footer p { margin: 14px 0; color: var(--muted); font-size: 10px; }
.site-footer>div:nth-of-type(2) { display: flex; gap: 18px; color: #c2d0cb; font-size: 9px; }
.site-footer>small { margin-top: 22px; color: #52635d; font-size: 8px; }

.bottom-nav { position: fixed; z-index: 20; left: 50%; bottom: 36px; display: grid; grid-template-columns: repeat(5,1fr); width: min(calc(100% - 20px),760px); min-height: 67px; padding: 6px; border: 1px solid rgba(186,255,99,.2); border-radius: 20px; background: rgba(13,29,24,.94); box-shadow: 0 16px 45px rgba(0,0,0,.5); backdrop-filter: blur(18px); transform: translateX(-50%); transition: opacity .22s,transform .22s; }
.bottom-nav.is-hidden { opacity: 0; transform: translate(-50%,110%); pointer-events: none; }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border-radius: 14px; color: #82968e; }
.bottom-nav a.active { background: var(--lime); color: #07110f; }
.bottom-nav a>span { font-size: 20px; line-height: 1; }
.bottom-nav a small { font-size: 8px; font-weight: 750; }
.bottom-ticker { position: fixed; z-index: 21; left: 50%; bottom: 0; width: min(100%,820px); min-height: 36px; transform: translateX(-50%); }
.bottom-ticker span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bottom-ticker span b { margin-right: 6px; color: var(--red); }

@media (min-width:700px) {
    .premium-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .premium-card:first-child { grid-column: 1/-1; min-height: 177px; }
    .premium-card:not(:first-child) { min-height: 182px; }
    .premium-card:not(:first-child) .premium-action { min-width: 70px; }
    .trend-row { grid-template-columns: 30px 50px minmax(0,1fr) auto; min-height: 79px; padding-inline: 18px; }
    .article-visual { min-height: 140px; }
    .article-body h3 { min-height: auto; font-size: 17px; }
}

@media (max-width:520px) {
    .top-ticker { padding-inline: 12px; }
    .site-header { gap: 10px; }
    .brand-copy { display: none; }
    .filter-link { padding: 9px 10px; }
    .intro { align-items: flex-start; flex-direction: column; gap: 18px; }
    .verified-pill { margin: 0; }
    .premium-card { min-height: 148px; padding: 17px; }
    .premium-action { min-width: 78px; }
    .premium-action a { padding: 9px; }
    .trend-row { grid-template-columns: 20px 42px minmax(0,1fr) auto; gap: 8px; padding-inline: 10px; }
    .site-badge { width: 40px; height: 40px; }
    .bonus-button { padding: 9px; font-size: 0; }
    .bonus-button span { font-size: 14px; }
}

@media (max-width:370px) {
    .filter-link { font-size: 9px; }
    .premium-copy>strong { font-size: 25px; }
    .premium-copy p { font-size: 16px; }
    .ad-eyebrow { font-size: 8px; }
    .article-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion:reduce) {
    html { scroll-behavior: auto; }
    *,*:before,*:after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
}

