@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;1,700;1,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #050505;
    --bg-soft: #0a0a0a;
    --panel: #0d0d0d;
    --panel-2: #111111;
    --border: rgba(255, 255, 255, .10);

    --text: #f4f4f4;
    --muted: #8e8e8e;

    --orange: #ff5a00;
    --orange-soft: #ff7a1a;

    --green: #39d86c;
    --red: #ff4545;

    --max-width: 1440px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    height: 92px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    background: rgba(5, 5, 5, .94);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 45px;
    line-height: 1;
    letter-spacing: -5px;
}

.brand-e {
    color: white;
}

.brand-x {
    color: var(--orange);
}

.nav {
    display: flex;
    align-items: center;
    gap: 46px;
    height: 92px;
}

.nav a {
    height: 92px;
    display: flex;
    align-items: center;

    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .8px;

    color: #c8c8c8;

    position: relative;
    transition: .25s ease;
}

.nav a:hover,
.nav a.active {
    color: white;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: var(--orange);
}

.telegram-btn {
    border: 1px solid var(--orange);
    color: var(--orange);

    padding: 13px 23px;

    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: .8px;

    transition: .25s ease;
}

.telegram-btn:hover {
    background: var(--orange);
    color: black;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 78% 50%,
            rgba(255, 90, 0, .10),
            transparent 28%),
        linear-gradient(90deg,
            #050505 0%,
            #050505 48%,
            #090909 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0) 65%,
            rgba(5, 5, 5, .35));

    pointer-events: none;
}

.hero-inner {
    min-height: 690px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 80px 0;
}

.hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(58px, 6vw, 92px);
    line-height: .91;
    letter-spacing: -2px;

    font-weight: 800;
    font-style: italic;
}

.hero h1 span {
    color: var(--orange);
}

.hero-line {
    width: 70px;
    height: 3px;

    background: var(--orange);

    margin: 34px 0;
}

.hero p {
    color: #d0d0d0;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 38px;
}

.hero p strong {
    color: var(--orange);
    font-weight: 500;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    background: var(--orange);
    color: #050505;

    padding: 17px 26px;

    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: .7px;

    border: 1px solid var(--orange);

    transition: .25s ease;
}

.primary-btn:hover {
    background: white;
    border-color: white;
    transform: translateY(-2px);
}


/* HERO VISUAL */

.hero-visual {
    height: 100%;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 90, 0, .20),
            rgba(255, 90, 0, .03) 42%,
            transparent 70%);

    filter: blur(10px);
}

.ball-placeholder {
    width: min(430px, 80%);
    aspect-ratio: 1;

    border-radius: 50%;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 62% 45%,
            #1d1d1d,
            #080808 57%,
            #000 75%);

    border: 1px solid rgba(255, 90, 0, .35);

    box-shadow:
        45px 10px 90px rgba(255, 90, 0, .12),
        inset -20px 0 40px rgba(255, 90, 0, .12);

    color: rgba(255, 255, 255, .05);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 70px;
    font-weight: 800;
}

.ball-placeholder::after {
    content: "";

    position: absolute;
    right: 3%;
    top: 15%;

    width: 8px;
    height: 70%;

    border-radius: 100%;

    background: var(--orange);

    filter: blur(8px);

    opacity: .8;
}


/* =========================
   CATEGORIES
========================= */

.categories {
    padding: 34px 0 42px;

    background: #080808;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-label {
    display: block;

    text-align: center;

    color: #777;

    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 2px;

    margin-bottom: 28px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.category {
    min-height: 92px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border-right: 1px solid var(--border);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: #e4e4e4;

    cursor: pointer;

    transition: .25s ease;
}

.category:last-child {
    border-right: 0;
}

.category:hover {
    color: var(--orange);
    background: rgba(255, 90, 0, .025);
}

.category-icon {
    color: var(--orange);
    font-size: 27px;
}


/* =========================
   COMMON SECTIONS
========================= */

.latest-section,
.picks-section {
    padding: 54px 0;
}

.picks-section {
    padding-top: 10px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.section-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
}

.section-heading a {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;

    transition: .2s ease;
}

.section-heading a:hover {
    color: white;
}


/* =========================
   INTELLIGENCE
========================= */

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.intel-card {
    min-height: 330px;

    padding: 23px;

    border: 1px solid var(--border);

    background:
        radial-gradient(circle at 50% 0%,
            rgba(255, 255, 255, .05),
            transparent 42%),
        linear-gradient(180deg,
            #101010,
            #090909);

    display: flex;
    flex-direction: column;

    transition: .25s ease;
}

.intel-card:hover {
    border-color: rgba(255, 90, 0, .5);
    transform: translateY(-3px);
}

.intel-time {
    color: #bdbdbd;

    font-size: 11px;
    letter-spacing: .6px;
}

.intel-time::first-letter {
    color: var(--orange);
}

.intel-content {
    margin-top: auto;
}

.country {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 600;

    color: #d8d8d8;
}

.intel-card h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 28px;
    line-height: 1;

    margin: 17px 0;
}

.intel-tag {
    display: inline-block;

    padding: 6px 9px;

    border: 1px solid rgba(255, 90, 0, .55);

    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.intel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 34px;
    padding-top: 16px;

    border-top: 1px solid var(--border);

    font-size: 11px;
    color: #777;
}

.intel-footer a {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
}


/* =========================
   PICKS
========================= */

.picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pick-card {
    min-height: 260px;

    padding: 22px;

    background: var(--panel);

    border: 1px solid var(--border);

    position: relative;

    transition: .25s ease;
}

.pick-card:hover {
    border-color: rgba(255, 90, 0, .5);
}

.active-pick {
    border-color: rgba(255, 90, 0, .45);
}

.pick-top {
    display: flex;
    justify-content: space-between;

    color: #777;

    font-size: 11px;

    margin-bottom: 34px;
}

.status {
    font-weight: 700;
}

.status.active {
    color: var(--orange);
}

.status.won {
    color: var(--green);
}

.status.lost {
    color: var(--red);
}

.pick-match {
    color: #9b9b9b;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;

    margin-bottom: 12px;
}

.pick-card h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 26px;
    line-height: 1.05;

    margin-bottom: 25px;
}

.pick-info {
    display: flex;
    align-items: flex-end;
    gap: 12px;

    color: #777;

    font-size: 11px;
}

.pick-info strong {
    color: white;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 30px;
}

.pick-result {
    position: absolute;

    right: 22px;
    bottom: 22px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 17px;
    font-weight: 700;
}

.won-text {
    color: var(--green);
}

.lost-text {
    color: var(--red);
}


/* =========================
   PREMIUM
========================= */

.premium-preview {
    padding: 40px 0 65px;
}

.premium-inner {
    min-height: 280px;

    padding: 50px;

    border: 1px solid var(--border);

    background:
        radial-gradient(circle at 90% 50%,
            rgba(255, 90, 0, .12),
            transparent 30%),
        #0a0a0a;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.premium-inner .section-label {
    text-align: left;
    margin-bottom: 15px;

    color: var(--orange);
}

.premium-inner h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 45px;
    line-height: .95;
}

.premium-inner h2 span {
    color: var(--orange);
}

.premium-inner p {
    max-width: 560px;

    color: #999;

    margin-top: 20px;

    line-height: 1.6;
}


/* =========================
   TELEGRAM CTA
========================= */

.telegram-cta {
    padding-bottom: 55px;
}

.telegram-cta-inner {
    min-height: 230px;

    border: 1px solid var(--border);

    padding: 45px 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background:
        radial-gradient(circle at 0% 100%,
            rgba(255, 90, 0, .13),
            transparent 30%),
        radial-gradient(circle at 100% 0%,
            rgba(255, 90, 0, .08),
            transparent 28%),
        #080808;
}

.telegram-cta h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 38px;
    line-height: 1;
    font-style: italic;
}

.telegram-cta h2 span {
    color: var(--orange);
}

.telegram-cta p {
    color: #888;

    margin-top: 16px;
}


/* =========================
   FOOTER
========================= */

.footer {
    border-top: 1px solid var(--border);

    padding: 38px 0 20px;

    background: #030303;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 32px;
    letter-spacing: -1px;
}

.footer-brand strong span {
    color: var(--orange);
}

.footer-brand small {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 10px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;

    color: #aaa;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 13px;
}

.footer-links a:hover {
    color: var(--orange);
}

.copyright {
    text-align: center;

    color: #555;

    font-size: 11px;

    margin-top: 35px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .nav {
        gap: 22px;
    }

    .intelligence-grid,
    .picks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category {
        border-bottom: 1px solid var(--border);
    }
}


@media (max-width: 760px) {

    .container {
        width: 90%;
    }

    .header {
        height: 72px;
    }

    .header-inner {
        height: 72px;
    }

    .brand {
        font-size: 37px;
    }

    .nav {
        display: none;
    }

    .telegram-btn {
        padding: 10px 15px;
        font-size: 14px;
    }


    /* HERO MOBILE */

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 75px 0 30px;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 72px);
    }

    .hero p {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .ball-placeholder {
        width: 280px;
    }

    .hero-glow {
        width: 330px;
        height: 330px;
    }


    /* CATEGORIES MOBILE */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category {
        border-bottom: 1px solid var(--border);
        min-height: 105px;
    }


    /* CARDS MOBILE */

    .intelligence-grid,
    .picks-grid {
        grid-template-columns: 1fr;
    }

    .intel-card {
        min-height: 290px;
    }


    /* PREMIUM */

    .premium-inner {
        padding: 35px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .premium-inner h2 {
        font-size: 39px;
    }


    /* TELEGRAM */

    .telegram-cta-inner {
        padding: 35px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .telegram-cta h2 {
        font-size: 33px;
    }


    /* FOOTER */

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 18px 25px;
    }
}

/* =========================
   MICRO ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.intelligence-grid .reveal:nth-child(2),
.picks-grid .reveal:nth-child(2) {
    transition-delay: .08s;
}

.intelligence-grid .reveal:nth-child(3),
.picks-grid .reveal:nth-child(3) {
    transition-delay: .16s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================
   INTELLIGENCE PAGE
========================= */

.intel-page-hero {
    padding: 95px 0 70px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 90, 0, .08), transparent 30%),
        #050505;
}

.intel-page-label {
    display: block;
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.intel-page-hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: .92;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1px;
}

.intel-page-hero h1 span {
    color: var(--orange);
}

.intel-page-hero p {
    max-width: 580px;
    margin-top: 25px;
    color: #999;
    font-size: 16px;
    line-height: 1.6;
}


/* FILTERS */

.intel-filters {
    background: #080808;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 92px;
    z-index: 50;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex: 0 0 auto;
    border: 1px solid var(--border);
    background: transparent;
    color: #888;
    padding: 10px 15px;
    cursor: pointer;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;

    transition: .2s ease;
}

.filter-btn:hover {
    color: white;
    border-color: #555;
}

.filter-btn.active {
    color: #050505;
    background: var(--orange);
    border-color: var(--orange);
}


/* FEED */

.intel-feed {
    padding: 45px 0 80px;
    min-height: 650px;
}

.intel-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .8px;
}

.live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 90, 0, .8);
}

.feed-status {
    color: #666;
    font-size: 12px;
    letter-spacing: 1.5px;
}


/* FEED ITEM */

.intel-feed-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feed-item {
    padding: 25px 28px;
    border: 1px solid var(--border);
    background: #0a0a0a;
    transition: .25s ease;
}

.feed-item:hover {
    border-color: rgba(255, 90, 0, .45);
    background: #0c0c0c;
}

.feed-item.filtered-out {
    display: none;
}

.feed-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 11px;
    letter-spacing: .5px;
    margin-bottom: 25px;
}

.feed-meta span:first-child {
    color: #aaa;
    font-weight: 600;
}

.feed-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.feed-info {
    max-width: 780px;
}

.feed-club {
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feed-info h2 {
    margin: 8px 0 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    line-height: 1.05;
}

.feed-info p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.feed-tag {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 90, 0, .5);
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.feed-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid var(--border);

    color: #555;
    font-size: 10px;
    letter-spacing: .5px;
}

.feed-bottom a {
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.feed-bottom a:hover {
    color: white;
}


/* INTELLIGENCE MOBILE */

@media (max-width: 760px) {

    .intel-page-hero {
        padding: 65px 0 50px;
    }

    .intel-page-hero h1 {
        font-size: 52px;
    }

    .intel-filters {
        top: 72px;
    }

    .filter-bar {
        width: 100%;
    }

    .feed-item {
        padding: 21px 19px;
    }

    .feed-main {
        flex-direction: column;
        gap: 18px;
    }

    .feed-info h2 {
        font-size: 26px;
    }

    .feed-tag {
        align-self: flex-start;
    }

    .feed-bottom {
        gap: 20px;
    }
}

/* =========================
   HERO IMAGE
========================= */

.hero-ball {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 680px;
    height: auto;

    object-fit: contain;

    filter:
        contrast(1.05) brightness(.95);

    transform: translateX(-4%);

    user-select: none;
    pointer-events: none;
}

@media (max-width: 760px) {

    .hero-ball {
        width: 105%;
        max-width: 500px;
        transform: translateX(0);
    }

}

/* =========================
   PICKS PAGE
========================= */

.picks-page-hero {
    padding: 95px 0 70px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 90, 0, .08), transparent 30%),
        #050505;
}

.picks-page-label {
    display: block;
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.picks-page-hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: .92;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1px;
}

.picks-page-hero h1 span {
    color: var(--orange);
}

.picks-page-hero p {
    max-width: 580px;
    margin-top: 25px;
    color: #999;
    font-size: 16px;
    line-height: 1.6;
}


/* PICKS FILTERS */

.pick-filters {
    background: #080808;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 92px;
    z-index: 50;
}

.pick-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.pick-filter-bar::-webkit-scrollbar {
    display: none;
}

.pick-filter-btn {
    flex: 0 0 auto;
    border: 1px solid var(--border);
    background: transparent;
    color: #888;
    padding: 10px 18px;
    cursor: pointer;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .7px;

    transition: .2s ease;
}

.pick-filter-btn:hover {
    color: white;
    border-color: #555;
}

.pick-filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #050505;
}


/* PICKS CONTENT */

.picks-page-content {
    padding: 45px 0 90px;
    min-height: 650px;
}

.picks-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 23px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .8px;
}

.picks-history-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* PICK CARD */

.history-pick {
    min-height: 360px;
    padding: 25px;

    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 100% 0%,
            rgba(255, 90, 0, .04),
            transparent 35%),
        #0a0a0a;

    display: flex;
    flex-direction: column;

    transition: .25s ease;
}

.history-pick:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 90, 0, .45);
}

.history-pick.filtered-out {
    display: none;
}

.history-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #777;

    font-size: 11px;
    letter-spacing: .7px;

    margin-bottom: 35px;
}

.history-status {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.history-status.active {
    color: var(--orange);
}

.history-status.won {
    color: var(--green);
}

.history-status.lost {
    color: var(--red);
}

.history-league {
    color: #666;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

.history-pick h2 {
    margin: 8px 0 23px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    line-height: 1;
}

.history-selection {
    color: #e9e9e9;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;

    padding-left: 12px;
    border-left: 2px solid var(--orange);
}

.history-details {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    margin-top: auto;
    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.history-details div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.history-details span {
    color: #555;
    font-size: 10px;
    letter-spacing: 1px;
}

.history-details strong {
    color: white;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
}

.history-details .won-text {
    color: var(--green);
}

.history-details .lost-text {
    color: var(--red);
}


/* PICKS MOBILE */

@media (max-width: 1000px) {

    .picks-history-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    .picks-page-hero {
        padding: 65px 0 50px;
    }

    .picks-page-hero h1 {
        font-size: 52px;
    }

    .pick-filters {
        top: 72px;
    }

    .picks-history-grid {
        grid-template-columns: 1fr;
    }

    .history-pick {
        height: auto;
        min-height: 300px;
        padding: 21px 19px;
    }

}

/* =========================
   PREMIUM PAGE
========================= */

.premium-page-hero {
    padding: 105px 0 80px;
    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(circle at 75% 40%,
            rgba(255, 90, 0, .11),
            transparent 32%),
        #050505;
}

.premium-page-label {
    display: block;

    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 20px;
}

.premium-page-hero h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(58px, 7vw, 95px);
    line-height: .88;

    font-weight: 800;
    font-style: italic;

    letter-spacing: -2px;
}

.premium-page-hero h1 span {
    color: var(--orange);
}

.premium-page-hero p {
    max-width: 570px;

    margin-top: 28px;

    color: #999;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================
   PRICING
========================= */

.pricing-section {
    padding: 75px 0 90px;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 45px;
}

.pricing-intro>span {
    color: #666;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.pricing-intro h2 {
    margin-top: 10px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 42px;
    line-height: 1;

    font-weight: 800;
}

.pricing-intro h2 strong {
    color: var(--orange);
}


/* GRID */

.pricing-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* CARD */

.pricing-card {
    min-height: 520px;

    padding: 38px;

    position: relative;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(circle at 100% 0%,
            rgba(255, 255, 255, .035),
            transparent 35%),
        #0a0a0a;

    border: 1px solid var(--border);

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 90, 0, .45);
}


/* FEATURED PLAN */

.featured-plan {
    border-color: rgba(255, 90, 0, .65);

    background:
        radial-gradient(circle at 100% 0%,
            rgba(255, 90, 0, .11),
            transparent 38%),
        #0a0a0a;
}

.best-value {
    position: absolute;

    top: 0;
    right: 25px;

    transform: translateY(-50%);

    background: var(--orange);
    color: #050505;

    padding: 7px 13px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* PRICE */

.plan-name {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.pricing-card-top h3 {
    margin-top: 18px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 70px;
    line-height: .9;

    font-weight: 800;
}

.pricing-card-top p {
    margin-top: 10px;

    color: #666;

    font-size: 11px;

    letter-spacing: 1px;
}


/* FEATURES */

.plan-features {
    margin: 40px 0;

    display: flex;
    flex-direction: column;

    gap: 17px;
}

.plan-features div {
    padding-bottom: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    color: #aaa;

    font-size: 13px;
}

.plan-features div span {
    color: var(--orange);

    margin-right: 10px;

    font-weight: 700;
}


/* BUY BUTTON */

.plan-button {
    width: 100%;

    margin-top: auto;

    padding: 16px 20px;

    border: 1px solid var(--orange);

    color: var(--orange);

    text-align: center;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: .8px;

    transition: .2s ease;
}

.plan-button:hover {
    background: var(--orange);
    color: #050505;
}

.featured-button {
    background: var(--orange);
    color: #050505;
}

.featured-button:hover {
    background: white;
    border-color: white;
}


/* =========================
   PREMIUM MESSAGE
========================= */

.premium-message {
    padding: 0 0 80px;
}

.premium-message-inner {
    min-height: 280px;

    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--border);

    background:
        radial-gradient(circle at 80% 50%,
            rgba(255, 90, 0, .10),
            transparent 30%),
        #080808;
}

.premium-message-inner>span {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.premium-message h2 {
    margin-top: 14px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 42px;
    line-height: .95;

    font-style: italic;
}

.premium-message h2 strong {
    color: var(--orange);
}

.premium-message p {
    margin-top: 18px;

    color: #777;

    font-size: 14px;
}


/* =========================
   PREMIUM RESPONSIVE
========================= */

@media (max-width: 760px) {

    .premium-page-hero {
        padding: 65px 0 55px;
    }

    .premium-page-hero h1 {
        font-size: 58px;
    }

    .pricing-section {
        padding: 55px 0 70px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .pricing-card {
        min-height: 500px;

        padding: 30px 23px;
    }

    .pricing-card-top h3 {
        font-size: 62px;
    }

    .premium-message-inner {
        padding: 35px 25px;
    }

    .premium-message h2 {
        font-size: 34px;
    }

}

/* =========================
   ABOUT PAGE
========================= */

.about-page-hero {
    padding: 105px 0 85px;
    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(circle at 78% 35%,
            rgba(255, 90, 0, .09),
            transparent 30%),
        #050505;
}

.about-page-label,
.contact-label {
    display: block;

    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 20px;
}

.about-page-hero h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(58px, 7vw, 92px);
    line-height: .9;

    font-weight: 800;
    font-style: italic;

    letter-spacing: -2px;
}

.about-page-hero h1 span {
    color: var(--orange);
}

.about-page-hero p {
    max-width: 650px;

    margin-top: 30px;

    color: #999;

    font-size: 16px;
    line-height: 1.7;
}


/* ABOUT CONTENT */

.about-content {
    padding: 85px 0;
}

.about-statement {
    max-width: 850px;
}

.about-statement>span {
    color: #666;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.about-statement h2 {
    margin-top: 15px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 45px;
    line-height: .98;
}

.about-statement h2 strong {
    color: var(--orange);
}

.about-statement p {
    max-width: 650px;

    margin-top: 25px;

    color: #888;

    line-height: 1.7;
}


/* THREE LINES */

.about-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 70px;

    border-top: 1px solid var(--border);
}

.about-lines>div {
    padding: 35px 35px 10px 0;

    border-right: 1px solid var(--border);
}

.about-lines>div:not(:first-child) {
    padding-left: 35px;
}

.about-lines>div:last-child {
    border-right: 0;
}

.about-lines span {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    font-weight: 700;
}

.about-lines h3 {
    margin: 20px 0 12px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 24px;
}

.about-lines p {
    color: #777;

    font-size: 13px;
    line-height: 1.7;
}


/* PHILOSOPHY */

.about-philosophy {
    padding-bottom: 80px;
}

.about-philosophy-inner {
    min-height: 310px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;

    border: 1px solid var(--border);

    background:
        radial-gradient(circle at 80% 50%,
            rgba(255, 90, 0, .11),
            transparent 30%),
        #080808;
}

.about-philosophy-inner>span {
    color: #666;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.about-philosophy h2 {
    margin-top: 18px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 48px;
    line-height: .95;

    font-style: italic;
}

.about-philosophy h2 strong {
    color: var(--orange);
}


/* CONTACT */

.contact-section {
    padding: 0 0 90px;
}

.contact-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    padding-top: 70px;

    border-top: 1px solid var(--border);
}

.contact-inner h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 52px;
    line-height: .9;

    font-style: italic;
}

.contact-inner h2 strong {
    color: var(--orange);
}

.contact-inner p {
    max-width: 400px;

    margin-top: 20px;

    color: #777;

    font-size: 14px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
}

.contact-option {
    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 5px;

    border-bottom: 1px solid var(--border);

    transition: .2s ease;
}

.contact-option:first-child {
    border-top: 1px solid var(--border);
}

.contact-option span {
    color: #666;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    letter-spacing: 1.5px;
}

.contact-option strong {
    color: white;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 18px;
}

.contact-option:hover {
    padding-left: 10px;
}

.contact-option:hover strong {
    color: var(--orange);
}


/* ABOUT MOBILE */

@media (max-width: 760px) {

    .about-page-hero {
        padding: 65px 0 55px;
    }

    .about-page-hero h1 {
        font-size: 55px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-statement h2 {
        font-size: 36px;
    }

    .about-lines {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .about-lines>div,
    .about-lines>div:not(:first-child) {
        padding: 30px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .about-philosophy-inner {
        padding: 35px 25px;
    }

    .about-philosophy h2 {
        font-size: 36px;
    }

    .contact-inner {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 55px;
    }

}

/* =========================
   LEGAL PAGE
========================= */

.legal-hero {
    padding: 100px 0 75px;
    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(circle at 80% 40%,
            rgba(255, 90, 0, .08),
            transparent 30%),
        #050505;
}

.legal-hero>.container>span {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.legal-hero h1 {
    margin-top: 20px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(55px, 6vw, 85px);
    line-height: .9;

    font-style: italic;
}

.legal-hero h1 strong {
    color: var(--orange);
}

.legal-hero p {
    max-width: 550px;

    margin-top: 28px;

    color: #888;

    line-height: 1.7;
}


/* LEGAL NAV */

.legal-navigation {
    position: sticky;
    top: 92px;
    z-index: 40;

    background: #080808;

    border-bottom: 1px solid var(--border);
}

.legal-nav-inner {
    display: flex;
    gap: 35px;

    padding: 20px 0;

    overflow-x: auto;
}

.legal-nav-inner a {
    flex: 0 0 auto;

    color: #888;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.legal-nav-inner a:hover {
    color: var(--orange);
}


/* CONTENT */

.legal-content {
    padding: 75px 0 100px;
}

.legal-container {
    max-width: 900px;
}

.legal-block {
    padding: 0 0 70px;

    margin-bottom: 70px;

    border-bottom: 1px solid var(--border);

    scroll-margin-top: 180px;
}

.legal-number {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 12px;
    font-weight: 700;
}

.legal-block h2 {
    margin: 12px 0 30px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 38px;
}

.legal-block p {
    max-width: 780px;

    margin-bottom: 18px;

    color: #999;

    font-size: 14px;
    line-height: 1.8;
}

.legal-warning {
    border-bottom: 0;
}

.legal-responsible {
    display: inline-block;

    margin-top: 20px;

    padding: 12px 17px;

    border: 1px solid var(--orange);

    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* LEGAL MOBILE */

@media (max-width: 760px) {

    .legal-hero {
        padding: 65px 0 55px;
    }

    .legal-hero h1 {
        font-size: 52px;
    }

    .legal-navigation {
        top: 72px;
    }

    .legal-nav-inner {
        gap: 25px;
    }

    .legal-content {
        padding: 55px 0 70px;
    }

    .legal-block {
        scroll-margin-top: 150px;
    }

}

/* =========================
   EMPTY LIVE STATES
========================= */

.empty-state {
    grid-column: 1 / -1;

    min-height: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 35px;

    border: 1px solid var(--border);

    background:
        radial-gradient(circle at 50% 100%,
            rgba(255, 90, 0, .055),
            transparent 45%),
        #090909;
}

.empty-live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow: 0 0 12px rgba(255, 90, 0, .75);

    margin-bottom: 17px;
}

.empty-state h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 23px;
    letter-spacing: 1px;
}

.empty-state p {
    color: #707070;

    font-size: 12px;

    margin: 9px 0 22px;
}

.empty-state a {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .7px;
}

.empty-state a:hover {
    color: white;
}

/* =========================
   HOME — LATEST PICK FIX
========================= */

.picks-section .pick-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.picks-section .pick-info {
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: 18px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    border-top: 1px solid var(--border);
}

.picks-section .pick-info span {
    color: #666;
    font-size: 10px;
    letter-spacing: 1px;
}

.picks-section .pick-info strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1;
}

.picks-section .pick-result {
    position: static;
    width: 100%;

    margin: 0;
    padding: 15px 0 0;

    border-top: 1px solid rgba(255, 255, 255, .06);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .8px;

    text-align: left;
}

.picks-section .pick-result.won-text {
    color: var(--green);
}


/* MOBILE */

@media (max-width: 760px) {

    .picks-section .pick-card {
        min-height: 300px;
    }

    .picks-section .pick-info {
        padding-top: 20px;
        padding-bottom: 15px;
    }

}

/* =========================
   HOME — INTELLIGENCE NEWS
========================= */

.intel-news-card {
    grid-column: 1 / -1;
    overflow: hidden;

    background: #090909;
    border: 1px solid var(--border);

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.intel-news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 90, 0, .55);
}

.intel-news-link {
    display: grid;
    grid-template-columns: 42% 58%;

    min-height: 310px;

    color: inherit;
    text-decoration: none;
}


/* IMAGE */

.intel-news-image {
    position: relative;
    overflow: hidden;

    min-height: 310px;

    background: #050505;
}

.intel-news-image img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition: transform .4s ease;
}

.intel-news-card:hover .intel-news-image img {
    transform: scale(1.035);
}

.intel-news-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            transparent 55%,
            rgba(9, 9, 9, .75) 100%);
}


/* CATEGORY */

.intel-news-category {
    position: absolute;
    z-index: 2;

    top: 20px;
    left: 20px;

    padding: 7px 11px;

    background: var(--orange);
    color: #050505;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* CONTENT */

.intel-news-content {
    padding: 38px 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intel-news-meta {
    display: flex;
    justify-content: space-between;

    margin-bottom: 25px;

    color: #666;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.intel-news-team {
    color: var(--orange);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.intel-news-content h3 {
    max-width: 620px;

    margin: 12px 0 30px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 34px;
    line-height: 1.02;

    font-weight: 800;
}

.intel-news-source {
    display: flex;
    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    color: #666;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.intel-news-source span {
    color: var(--orange);
}


/* MOBILE */

@media (max-width: 760px) {

    .intel-news-link {
        grid-template-columns: 1fr;
    }

    .intel-news-image {
        min-height: 210px;
    }

    .intel-news-content {
        padding: 28px 22px;
    }

    .intel-news-content h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .intel-news-meta {
        margin-bottom: 20px;
    }

}

/* PREMIUM — COMING SOON */

.coming-soon {
    cursor: default;
    opacity: 0.65;
    user-select: none;
}