:root {
    --red: #d20a17;
    --red2: #8f0610;
    --black: #080808;
    --soft: #111;
    --white: #fff;
    --muted: #b7b7b7;
    --line: #252525;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #080808;
    color: white;
    font-family: Roboto, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wrap {
    width: min(var(--max), calc(100% - 36px));
    margin: auto;
}

.eyebrow {
    font: 800 13px 'Roboto Condensed';
    letter-spacing: .18em;
    color: var(--red);
    text-transform: uppercase;
}

.section {
    padding: 78px 0;
}

.section h2 {
    font: 900 clamp(34px, 5vw, 64px) 'Roboto Condensed';
    margin: 8px 0 28px;
    text-transform: uppercase;
    line-height: .95;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid var(--red);
    background: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
    background: #ef1423;
}

.btn.alt {
    background: transparent;
    border-color: #555;
}

.btn.alt:hover {
    border-color: white;
}


/* =========================
   TOP BAR
========================= */

.topbar {
    background: var(--red);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}


/* =========================
   NAVIGATION
========================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 7, 7, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.navin {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crest {
    width: 58px;
    height: 64px;
    clip-path: polygon(
            50% 0,
            94% 15%,
            88% 73%,
            50% 100%,
            12% 73%,
            6% 15%
    );
    background: linear-gradient(145deg, #ef1b29, #87040d);
    display: grid;
    place-items: center;
    border: 2px solid white;
    box-shadow: 0 0 0 3px #b00914;
}

.crest span {
    font: 900 26px 'Roboto Condensed';
}

.brandtext b {
    display: block;
    font: 900 20px 'Roboto Condensed';
    line-height: 1;
    text-transform: uppercase;
}

.brandtext small {
    font-size: 10px;
    letter-spacing: .18em;
    color: #aaa;
}

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
    font: 700 14px 'Roboto Condensed';
    text-transform: uppercase;
}

.menu a:hover {
    color: var(--red);
}

.hamb {
    display: none;
    font-size: 28px;
    background: none;
    color: white;
    border: 0;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 720px;
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 70% 35%,
                    rgba(210, 10, 23, .38),
                    transparent 35%
            ),
            linear-gradient(
                    100deg,
                    #050505 0%,
                    #0a0a0a 45%,
                    #260306 100%
            );
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            115deg,
            transparent 0 68px,
            rgba(255, 255, 255, .025) 69px 70px
    );
}

.hero:after {
    content: "ΑΣΤΕΡΑΣ";
    position: absolute;
    right: -30px;
    top: 80px;
    font: 900 min(22vw, 310px) 'Roboto Condensed';
    color: rgba(255, 255, 255, .025);
    transform: rotate(-8deg);
}

.heroContent {
    position: relative;
    z-index: 2;
    padding: 95px 0 85px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 50px;
    align-items: end;
}

.hero h1 {
    font: 900 clamp(58px, 9vw, 130px) 'Roboto Condensed';
    line-height: .78;
    margin: 14px 0 28px;
    text-transform: uppercase;
    letter-spacing: -.045em;
}

.hero h1 span {
    color: var(--red);
    display: block;
}

.hero p {
    max-width: 650px;
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.65;
}

.heroBtns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.heroCard {
    border: 1px solid #3b3b3b;
    background: rgba(8, 8, 8, .78);
    padding: 26px;
    box-shadow: 20px 20px 0 rgba(210, 10, 23, .16);
}

.heroCard .date {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
}

.teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin: 28px 0;
}

.team {
    text-align: center;
}

.miniCrest {
    width: 78px;
    height: 78px;
    margin: 0 auto 10px;
    background: #1b1b1b;
    display: grid;
    place-items: center;
    font: 900 20px 'Roboto Condensed';
    border: 2px solid #777;
    overflow: hidden;
    padding: 8px;
}

.miniCrest.red {
    background: #151515;
    border-color: var(--red);
}

.miniCrest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.vs {
    font: 900 28px 'Roboto Condensed';
    color: #666;
}

.stadium {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 16px;
}


/* =========================
   TICKER
========================= */

.ticker {
    background: white;
    color: black;
}

.ticker .wrap {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: stretch;
}

.tickerTitle {
    background: var(--red);
    color: white;
    font: 900 20px 'Roboto Condensed';
    padding: 22px;
    text-transform: uppercase;
}

.tickerText {
    padding: 22px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================
   MATCHES
========================= */

.matchGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.match {
    background: #101010;
    border: 1px solid #242424;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.match:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: var(--red);
}

.match .meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
}

.score {
    font: 900 42px 'Roboto Condensed';
    margin: 22px 0;
}

.score span {
    color: var(--red);
}

.match b {
    font: 800 18px 'Roboto Condensed';
    text-transform: uppercase;
}

.matchTeams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.matchTeam {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    font: 800 16px 'Roboto Condensed';
    text-transform: uppercase;
}

.matchTeam:last-child {
    justify-content: flex-end;
    text-align: right;
}

.matchTeam img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
}

.matchDash {
    color: #666;
    font-weight: 900;
}


/* =========================
   TABLE / NEWS
========================= */

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
}

.tableBox,
.newsBox {
    background: #101010;
    border: 1px solid #252525;
}

.tableBox {
    padding: 24px;
}

.standings {
    width: 100%;
    border-collapse: collapse;
}

.standings th,
.standings td {
    padding: 14px 10px;
    border-bottom: 1px solid #242424;
    text-align: left;
    font-size: 14px;
}

.standings th {
    color: #999;
    text-transform: uppercase;
    font-size: 11px;
}

.standings tr.highlight {
    background: rgba(210, 10, 23, .14);
    font-weight: 800;
}

.rank {
    color: #777;
    width: 35px;
}

.pts {
    text-align: right !important;
    font-weight: 900;
}

.newsCard {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid #252525;
}

.newsImg {
    min-height: 150px;
    background: linear-gradient(145deg, #282828, #090909);
    position: relative;
}

.newsImg:after {
    content: "★";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 55px;
    color: rgba(210, 10, 23, .65);
}

.newsContent {
    padding: 22px;
}

.newsContent small {
    color: var(--red);
    font-weight: 800;
}

.newsContent h3 {
    font: 800 22px 'Roboto Condensed';
    margin: 8px 0 10px;
    text-transform: uppercase;
}

.newsContent p {
    color: #aaa;
    line-height: 1.5;
    margin: 0;
}


/* =========================
   TEAM
========================= */

.teamSection {
    background: linear-gradient(#0b0b0b, #151515);
}

.players {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.player {
    height: 390px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
            160deg,
            #343434 0%,
            #161616 45%,
            #080808 100%
    );
    border-bottom: 4px solid var(--red);
}

.player:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 1px;
    border-radius: 50% 50% 12% 12%;
    background: linear-gradient(#222, #080808);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.player:after {
    content: "★";
    position: absolute;
    right: 20px;
    top: 18px;
    color: rgba(210, 10, 23, .2);
    font-size: 90px;
}

.playerInfo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    background: linear-gradient(
            transparent,
            rgba(0, 0, 0, .96)
    );
    z-index: 3;
}

.playerInfo b {
    display: block;
    font: 900 24px 'Roboto Condensed';
    text-transform: uppercase;
}

.playerInfo span {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}


/* =========================
   ACADEMY
========================= */

.academy {
    background:
            linear-gradient(
                    90deg,
                    rgba(210, 10, 23, .95),
                    rgba(120, 0, 8, .92)
            ),
            repeating-linear-gradient(
                    45deg,
                    #111 0 20px,
                    #171717 20px 40px
            );
}

.academyIn {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.academy h2 {
    margin-bottom: 14px;
}

.academy p {
    max-width: 720px;
    line-height: 1.6;
}

.academy .btn {
    background: white;
    color: black;
    border-color: white;
}


/* =========================
   SPONSORS / DONATORS
========================= */

.sponsorsSection {
    background: #080808;
}

.sponsorTier {
    margin-top: 34px;
}

.sponsorTierTitle {
    text-align: center;
    color: #888;
    font: 900 13px 'Roboto Condensed';
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}


/* TOP / DONATORS */

.topSponsors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}


/* MAIN SPONSORS */

.mainSponsors {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}


/* SUPPORTERS */

.supportSponsors {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}


/* GENERIC SPONSOR CONTAINER */

.sponsor {
    background: #111;
    border: 1px solid #252525;
    display: grid;
    place-items: center;
    color: #777;
    font: 900 18px 'Roboto Condensed';
    padding: 4px;
    transition: .2s;
    overflow: hidden;
}

.sponsor:hover {
    border-color: #555;
    transform: translateY(-2px);
}

.sponsor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* TOP / DONATOR LOGOS
   ~60% larger than original
*/

.sponsorTop {
    height: 220px;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.sponsorTop img {
    max-height: 210px;
    max-width: 100%;
    width: auto;
    height: auto;
}


/* MAIN SPONSOR LOGOS
   ~60% larger than original
*/

.sponsorMain {
    height: 150px;
    padding: 5px;
}

.sponsorMain img {
    max-height: 135px;
    max-width: 100%;
    width: auto;
    height: auto;
}


/* SUPPORTER LOGOS
   ~60% larger than original
*/

.sponsorSupport {
    height: 105px;
    padding: 4px;
}

.sponsorSupport img {
    max-height: 95px;
    max-width: 100%;
    width: auto;
    height: auto;
}


/* EMPTY SPONSOR SLOT */

.sponsorEmpty {
    border: 1px dashed #333;
    padding: 28px;
    text-align: center;
    color: #666;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #252525;
    padding: 50px 0 20px;
    background: #050505;
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footerGrid h4 {
    font: 800 17px 'Roboto Condensed';
    text-transform: uppercase;
}

.footerGrid p,
.footerGrid a {
    color: #999;
    line-height: 1.8;
    font-size: 14px;
}

.footerBottom {
    border-top: 1px solid #222;
    margin-top: 35px;
    padding-top: 20px;
    color: #666;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}


/* =========================
   RESPONSIVE - 900px
========================= */

@media (max-width: 900px) {

    .menu {
        display: none;
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 1px);
        background: #0b0b0b;
        border: 1px solid #252525;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        padding: 12px;
        border-bottom: 1px solid #222;
    }

    .menu a:last-child {
        border-bottom: 0;
    }

    .hamb {
        display: block;
    }

    .heroContent,
    .split,
    .academyIn {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .heroCard {
        max-width: 520px;
    }

    .matchGrid {
        grid-template-columns: 1fr;
    }

    .players {
        grid-template-columns: repeat(2, 1fr);
    }

    .topSponsors {
        grid-template-columns: repeat(3, 1fr);
    }

    .mainSponsors {
        grid-template-columns: repeat(2, 1fr);
    }

    .supportSponsors {
        grid-template-columns: repeat(3, 1fr);
    }

    .footerGrid {
        grid-template-columns: 1fr;
    }

    .ticker .wrap {
        grid-template-columns: 1fr;
    }

    .newsCard {
        grid-template-columns: 120px 1fr;
    }
}


/* =========================
   RESPONSIVE - 560px
========================= */

@media (max-width: 560px) {

    .topbar .wrap span:last-child {
        display: none;
    }

    .brandtext b {
        font-size: 16px;
    }

    .logoWrap {
        width: 48px;
        height: 54px;
    }

    .navin {
        height: 70px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .section {
        padding: 56px 0;
    }

    .players {
        grid-template-columns: 1fr;
    }

    .player {
        height: 360px;
    }

    .newsCard {
        grid-template-columns: 1fr;
    }

    .newsImg {
        min-height: 130px;
    }


    /* TOP / DONATORS */

    .topSponsors {
        grid-template-columns: 1fr;
    }

    .sponsorTop {
        height: 190px;
        padding: 5px;
    }

    .sponsorTop img {
        max-height: 180px;
    }


    /* MAIN SPONSORS */

    .mainSponsors {
        grid-template-columns: 1fr 1fr;
    }

    .sponsorMain {
        height: 130px;
        padding: 4px;
    }

    .sponsorMain img {
        max-height: 120px;
    }


    /* SUPPORTERS */

    .supportSponsors {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsorSupport {
        height: 95px;
        padding: 3px;
    }

    .sponsorSupport img {
        max-height: 87px;
    }


    .footerBottom {
        display: block;
        line-height: 1.8;
    }
}


/* =========================
   CUSTOM LOGO
========================= */

.logoWrap {
    width: 58px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logoWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}