@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 170, 0.10), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(100, 60, 255, 0.14), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(0, 170, 255, 0.08), transparent 30%),
        #070a0f;
    color: #f5f7fa;
    min-height: 100vh;
    overflow-x: hidden;
}

/* پس‌زمینه نورانی */

body::before,
body::after {
    content: "";
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

body::before {
    background: #00ffb3;
    top: 10%;
    right: -150px;
}

body::after {
    background: #704cff;
    bottom: 5%;
    left: -150px;
}

/* کانتینر */

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(7, 10, 15, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.trophy {
    font-size: 35px;
    filter: drop-shadow(0 0 15px rgba(255, 200, 50, 0.6));
}

.logo h1 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #00ffc3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 8px;
}

nav a {
    color: #b8c0ca;
    text-decoration: none;
    padding: 10px 17px;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 190, 0.08);
}

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

.hero {
    min-height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 190, 0.13),
        transparent 65%
    );
    border-radius: 50%;
    animation: pulse 5s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 0.5;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(
        90deg,
        #ffffff,
        #00ffc3,
        #8b6cff,
        #ffffff
    );
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s infinite linear;
}

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 300%;
    }
}

.subtitle {
    color: #aeb7c4;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    color: #dce4ec;
    font-size: 14px;
    transition: 0.3s;
}

.badge:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 190, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 190, 0.1);
}

/* قهرمان */

.champion-box {
    margin: 40px auto 0;
    width: min(360px, 90%);
    padding: 22px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.03)
    );

    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(25px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.champion-label {
    display: block;
    color: #8e9aaa;
    font-size: 13px;
    margin-bottom: 7px;
}

.champion-name {
    font-size: 25px;
    font-weight: 800;
    color: #fff;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 45px;
    font-weight: 800;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #00ffc3, #785cff);
    margin: 15px auto 0;
}

/* =========================
   CARDS
========================= */

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

.card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition: 0.35s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,255,195,0.35);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.4),
        0 0 30px rgba(0,255,195,0.08);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    color: #9fa9b7;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   FINAL
========================= */

.final-section {
    position: relative;
}

.final-card {
    max-width: 900px;
    margin: auto;
    padding: 45px 30px;

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

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.035)
        );

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(25px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.team {
    text-align: center;
}

.team .flag {
    display: block;
    font-size: 65px;
    margin-bottom: 10px;
}

.team h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.score {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    font-size: 28px;
    font-weight: 900;
}

.winner .score {
    background: linear-gradient(135deg, #00d89a, #00a878);
    box-shadow: 0 0 30px rgba(0,255,180,0.25);
}

.vs {
    text-align: center;
}

.vs span {
    font-size: 30px;
    font-weight: 900;
    color: #00ffc3;
}

.vs small {
    display: block;
    margin-top: 8px;
    color: #8994a3;
}

/* اطلاعات فینال */

.final-info {
    max-width: 700px;
    margin: 25px auto;
    text-align: center;
    color: #aeb7c4;
}

.final-info p {
    margin: 8px 0;
}

.final-info strong {
    color: #ffffff;
}

/* =========================
   PODIUM
========================= */

.podium {
    max-width: 650px;
    margin: 50px auto 0;

    display: flex;
    align-items: end;
    justify-content: center;
    gap: 15px;
}

.place {
    flex: 1;
    padding: 20px 10px;
    text-align: center;
    border-radius: 20px 20px 0 0;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.place span {
    font-size: 35px;
}

.place p {
    margin-top: 8px;
    font-weight: 600;
}

.first {
    height: 180px;
}

.second {
    height: 140px;
}

.third {
    height: 120px;
}

/* =========================
   GROUPS
========================= */

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

.group-card {
    padding: 22px;
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(20px);
    transition: 0.3s;
}

.group-card:hover {
    transform: translateY(-7px);
    border-color: rgba(120, 92, 255, 0.4);
}

.group-card h3 {
    margin-bottom: 18px;
    color: #00ffc3;
}

.group-card ul {
    list-style: none;
}

.group-card li {
    padding: 10px;
    margin: 7px 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.045);
    color: #d7dde5;
}

/* =========================
   STATS
========================= */

.stats-section {
    padding-bottom: 110px;
}

.stats-card {
    max-width: 1000px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-radius: 30px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(25px);

    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-left: 1px solid rgba(255,255,255,0.07);
}

.stat-item:last-child {
    border-left: none;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;

    background: linear-gradient(
        135deg,
        #00ffc3,
        #7b61ff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: 10px;
    color: #a8b1bd;
    font-size: 14px;
}

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

.footer {
    padding: 30px 0;
    text-align: center;

    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);

    color: #7f8996;
    font-size: 13px;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #070a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#00ffc3, #725cff);
    border-radius: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

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

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

@media (max-width: 700px) {

    .header .container {
        flex-direction: column;
    }

    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero {
        min-height: 550px;
    }

    .hero h2 {
        font-size: 42px;
    }

    .subtitle {
        font-size: 15px;
    }

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

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

    .final-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vs {
        order: 2;
    }

    .team {
        order: 1;
    }

    .stats-card {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .podium {
        gap: 7px;
    }

    .first {
        height: 150px;
    }

    .second {
        height: 120px;
    }

    .third {
        height: 100px;
    }
}

@media (max-width: 400px) {

    .hero h2 {
        font-size: 34px;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .badge {
        width: 100%;
    }
}

/* =========================================
   WORLD CUP MATCHES PAGE
========================================= */

.active-nav {
    color: #ffffff !important;
    background: rgba(0, 255, 195, 0.10);
    border: 1px solid rgba(0, 255, 195, 0.18);
}


/* HERO */

.matches-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 255, 195, 0.12),
            transparent 45%
        );
}

.matches-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(0,255,195,0.08);

    box-shadow:
        0 0 100px rgba(0,255,195,0.08),
        inset 0 0 100px rgba(100,80,255,0.08);

    animation: rotateCircle 15s linear infinite;
}

@keyframes rotateCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.matches-hero-content {
    position: relative;
    z-index: 2;
}

.big-ball {
    font-size: 75px;

    margin-bottom: 15px;

    filter:
        drop-shadow(0 0 25px rgba(0,255,195,0.4));

    animation: ballFloat 3s ease-in-out infinite;
}

@keyframes ballFloat {

    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

}

.matches-hero h2 {
    font-size: clamp(35px, 6vw, 65px);

    font-weight: 900;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #00ffc3,
            #816dff,
            #ffffff
        );

    background-size: 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 6s linear infinite;

    margin-bottom: 15px;
}

.matches-hero p {
    color: #aeb8c5;
    font-size: 17px;
}


/* SUMMARY */

.match-summary {

    margin: 40px auto 0;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}

.match-summary > div {

    min-width: 120px;

    padding: 18px 25px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.055);

    border:
        1px solid rgba(255,255,255,0.09);

    backdrop-filter: blur(20px);

}

.match-summary strong {

    display: block;

    font-size: 28px;

    color: #00ffc3;

    font-weight: 900;

}

.match-summary span {

    display: block;

    margin-top: 5px;

    color: #8994a3;

    font-size: 12px;

}


/* TOOLBAR */

.matches-toolbar {

    margin-bottom: 25px;

    padding: 20px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);

}

.search-box {

    display: flex;

    align-items: center;

    gap: 10px;

    max-width: 500px;

    margin: 0 auto 20px;

    padding: 13px 18px;

    border-radius: 15px;

    background:
        rgba(0,0,0,0.25);

    border:
        1px solid rgba(255,255,255,0.08);

}

.search-box span {
    font-size: 20px;
}

.search-box input {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

}

.search-box input::placeholder {
    color: #697482;
}


/* FILTER BUTTONS */

.filter-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

}

.filter-btn {

    border: none;

    color: #aab3bf;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.08);

    padding: 9px 15px;

    border-radius: 12px;

    font-family: inherit;

    cursor: pointer;

    transition: 0.25s;

}

.filter-btn:hover {

    color: white;

    border-color:
        rgba(0,255,195,0.25);

}

.filter-btn.active {

    color: #00120e;

    background:
        linear-gradient(
            135deg,
            #00ffc3,
            #00c994
        );

    border-color: transparent;

    font-weight: 700;

    box-shadow:
        0 5px 25px rgba(0,255,195,0.15);

}


/* COUNT */

.matches-count {

    color: #7f8b99;

    font-size: 13px;

    margin-bottom: 20px;

}

.matches-count span {

    color: #00ffc3;

    font-weight: 800;

}


/* ROUND TITLE */

.round-title {

    display: flex;

    align-items: center;

    gap: 15px;

    margin: 50px 0 20px;

}

.round-title span {

    height: 1px;

    flex: 1;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,255,195,0.25)
        );

}

.round-title span:last-child {

    background:
        linear-gradient(
            90deg,
            rgba(0,255,195,0.25),
            transparent
        );

}

.round-title h2 {

    white-space: nowrap;

    font-size: 20px;

    color: #ffffff;

}


/* MATCH CARD */

.match-card {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 95px;

    margin-bottom: 12px;

    padding: 15px 20px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.18);

    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;

}

.match-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(0,255,195,0.25);

    box-shadow:
        0 15px 45px rgba(0,0,0,0.3),
        0 0 25px rgba(0,255,195,0.04);

}


/* MATCH NUMBER */

.match-number {

    width: 55px;

    color: #596574;

    font-size: 12px;

    font-weight: 700;

}


/* MAIN */

.match-main {

    flex: 1;

    display: grid;

    grid-template-columns:
        1fr 100px 1fr;

    align-items: center;

    gap: 15px;

}

.match-team {

    font-size: 16px;

    font-weight: 600;

}

.match-team.home {

    text-align: left;

}

.match-team.away {

    text-align: right;

}


/* SCORE */

.match-score {

    text-align: center;

}

.match-score strong {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-width: 80px;

    height: 48px;

    border-radius: 14px;

    background:
        rgba(0,0,0,0.30);

    border:
        1px solid rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 20px;

    font-weight: 900;

}

.match-score small {

    display: block;

    color: #00ffc3;

    font-size: 10px;

    margin-top: 5px;

}


/* META */

.match-meta {

    width: 130px;

    text-align: center;

    color: #778290;

    font-size: 11px;

}


/* FINAL */

.final-match {

    border-color:
        rgba(255,205,70,0.3);

    background:
        linear-gradient(
            135deg,
            rgba(255,200,60,0.10),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 0 40px rgba(255,200,60,0.05);

}

.final-match .match-number {

    color: #d6ad3d;

}

.final-match .match-score strong {

    border-color:
        rgba(255,205,70,0.3);

    color: #ffd866;

}


/* MOBILE */

@media (max-width: 700px) {

    .matches-hero {
        min-height: 450px;
    }

    .big-ball {
        font-size: 55px;
    }

    .match-summary {
        gap: 7px;
    }

    .match-summary > div {
        min-width: 75px;
        padding: 12px;
    }

    .match-summary strong {
        font-size: 22px;
    }

    .match-card {
        padding: 12px;
        flex-wrap: wrap;
    }

    .match-number {
        width: 35px;
    }

    .match-main {
        grid-template-columns:
            1fr 75px 1fr;

        gap: 5px;

        width: calc(100% - 35px);
    }

    .match-team {
        font-size: 12px;
    }

    .match-score strong {
        min-width: 60px;
        height: 40px;
        font-size: 16px;
    }

    .match-meta {
        width: 100%;
        margin-top: 10px;
        padding-top: 8px;

        border-top:
            1px solid rgba(255,255,255,0.05);
    }

    .round-title {
        margin-top: 35px;
    }

    .round-title h2 {
        font-size: 16px;
    }

}

```css
/* ==========================================
   AUTH
========================================== */

.auth-section {
    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px 20px;
}

.auth-card {
    width: min(450px, 100%);

    padding: 40px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(25px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.4);
}

.auth-icon {
    font-size: 60px;

    margin-bottom: 15px;

    filter:
        drop-shadow(
            0 0 20px rgba(0,255,195,0.3)
        );
}

.auth-card h2 {
    font-size: 30px;

    margin-bottom: 10px;
}

.auth-card > p {
    color: #8995a4;

    margin-bottom: 25px;
}

.auth-card form {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.auth-card input {
    width: 100%;

    padding: 15px;

    border-radius: 15px;

    border:
        1px solid rgba(255,255,255,0.08);

    outline: none;

    background:
        rgba(0,0,0,0.25);

    color: white;

    font-family: inherit;
}

.auth-card input:focus {
    border-color:
        rgba(0,255,195,0.4);
}

.auth-card button {
    padding: 15px;

    border: none;

    border-radius: 15px;

    cursor: pointer;

    font-family: inherit;

    font-weight: 800;

    color: #00120e;

    background:
        linear-gradient(
            135deg,
            #00ffc3,
            #00c994
        );

    transition: 0.3s;
}

.auth-card button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0,255,195,0.2);
}

.auth-link {
    margin-top: 25px !important;
}

.auth-link a {
    color: #00ffc3;

    text-decoration: none;

    font-weight: 700;
}


/* ==========================================
   FLASH
========================================== */

.flash {
    margin-bottom: 20px;

    padding: 13px 17px;

    border-radius: 15px;

    color: #00ffc3;

    background:
        rgba(0,255,195,0.07);

    border:
        1px solid rgba(0,255,195,0.15);
}


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

.prediction-hero {
    padding: 70px 0 30px;
}

.prediction-hero-card {
    text-align: center;

    padding: 45px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(0,255,195,0.09),
            rgba(100,80,255,0.07)
        );

    border:
        1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(25px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.3);
}

.prediction-icon {
    font-size: 65px;

    margin-bottom: 10px;
}

.prediction-hero-card h2 {
    font-size: 38px;

    margin-bottom: 10px;
}

.prediction-hero-card p {
    color: #98a4b2;
}

.prediction-stats {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.prediction-stats div {
    min-width: 130px;

    padding: 18px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);
}

.prediction-stats strong {
    display: block;

    font-size: 28px;

    color: #00ffc3;
}

.prediction-stats span {
    color: #7e8996;

    font-size: 12px;
}


/* ==========================================
   PREDICTION GRID
========================================== */

.prediction-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.prediction-card {
    padding: 25px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);

    transition: 0.3s;
}

.prediction-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0,255,195,0.25);
}

.prediction-date {
    color: #74808e;

    font-size: 12px;

    margin-bottom: 20px;
}

.prediction-teams {
    display: grid;

    grid-template-columns:
        1fr 60px 1fr;

    align-items: center;

    text-align: center;

    gap: 10px;
}

.prediction-team {
    font-weight: 700;

    color: #e9edf2;
}

.prediction-vs {
    color: #00ffc3;

    font-weight: 900;
}

.prediction-form {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        1fr 20px 1fr;

    align-items: end;

    gap: 8px;
}

.prediction-form div {
    text-align: center;
}

.prediction-form label {
    display: block;

    color: #7f8b99;

    font-size: 11px;

    margin-bottom: 7px;
}

.prediction-form input {
    width: 100%;

    height: 50px;

    text-align: center;

    border-radius: 14px;

    border:
        1px solid rgba(255,255,255,0.1);

    background:
        rgba(0,0,0,0.25);

    color: white;

    font-size: 20px;

    font-weight: 800;

    outline: none;
}

.prediction-form > span {
    text-align: center;

    padding-bottom: 14px;

    color: #76818f;
}

.prediction-form button {
    grid-column: 1 / -1;

    margin-top: 8px;

    padding: 13px;

    border: none;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #00ffc3,
            #00c994
        );

    color: #00120e;

    font-family: inherit;

    font-weight: 800;

    cursor: pointer;
}

.saved-prediction {
    margin-top: 15px;

    padding: 12px;

    text-align: center;

    border-radius: 12px;

    background:
        rgba(0,255,195,0.05);

    color: #8f9ba8;

    font-size: 12px;
}

.saved-prediction strong {
    color: #00ffc3;

    margin-right: 5px;
}

.closed-prediction {
    margin-top: 20px;

    padding: 15px;

    text-align: center;

    border-radius: 14px;

    background:
        rgba(255,80,80,0.05);

    color: #ff8b8b;
}


/* ==========================================
   LEADERBOARD
========================================== */

.leaderboard-card {
    max-width: 850px;

    margin: auto;

    padding: 10px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);
}

.leader-row {
    display: grid;

    grid-template-columns:
        70px 1fr 130px;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.leader-row:last-child {
    border-bottom: none;
}

.leader-rank {
    font-size: 22px;

    text-align: center;
}

.leader-user strong {
    display: block;

    color: #f1f4f7;
}

.leader-user small {
    color: #737f8d;

    font-size: 11px;
}

.leader-points {
    text-align: center;

    color: #00ffc3;

    font-size: 22px;

    font-weight: 900;
}

.leader-points span {
    display: block;

    color: #687483;

    font-size: 10px;

    font-weight: 400;
}


/* ==========================================
   PROFILE
========================================== */

.profile-card {
    max-width: 600px;

    margin: auto;

    padding: 45px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(25px);
}

.profile-avatar {
    width: 100px;

    height: 100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 45px;

    background:
        linear-gradient(
            135deg,
            rgba(0,255,195,0.15),
            rgba(100,80,255,0.15)
        );

    border:
        1px solid rgba(255,255,255,0.1);
}

.profile-card h2 {
    margin-top: 20px;

    font-size: 30px;
}

.profile-card > p {
    color: #7f8a98;
}

.profile-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin: 30px 0;
}

.profile-stats div {
    padding: 18px 10px;

    border-radius: 15px;

    background:
        rgba(255,255,255,0.045);
}

.profile-stats strong {
    display: block;

    color: #00ffc3;

    font-size: 25px;
}

.profile-stats span {
    color: #747f8d;

    font-size: 11px;
}

.profile-button {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 14px;

    color: #00120e;

    background:
        linear-gradient(
            135deg,
            #00ffc3,
            #00c994
        );

    text-decoration: none;

    font-weight: 800;
}


/* ==========================================
   EMPTY
========================================== */

.empty-card {
    padding: 50px;

    text-align: center;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.07);

    color: #8d98a6;
}

.empty-text {
    text-align: center;

    padding: 40px;

    color: #7f8b99;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 800px) {

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

    .prediction-hero-card {
        padding: 30px 20px;
    }

    .prediction-hero-card h2 {
        font-size: 28px;
    }

    .leader-row {
        grid-template-columns:
            50px 1fr 90px;
    }

}

@media (max-width: 500px) {

    .auth-card,
    .profile-card {
        padding: 25px 18px;
    }

    .prediction-stats {
        display: grid;

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

    .prediction-stats div {
        min-width: 0;

        padding: 12px 5px;
    }

    .prediction-stats strong {
        font-size: 21px;
    }

    .prediction-team {
        font-size: 12px;
    }

    .leader-row {
        grid-template-columns:
            40px 1fr 75px;

        gap: 7px;

        padding: 14px 8px;
    }

}

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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(7, 11, 20, 0.72);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.main-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    flex-wrap: wrap;
}

.main-nav a {
    position: relative;

    padding: 10px 13px;

    border-radius: 12px;

    color: #aab4c1;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.main-nav a:hover {
    color: #ffffff;

    background:
        rgba(255,255,255,0.07);

    transform: translateY(-2px);
}

.main-nav a.active-nav {
    color: #00ffc3;

    background:
        rgba(0,255,195,0.08);

    border:
        1px solid rgba(0,255,195,0.12);

    box-shadow:
        0 0 20px rgba(0,255,195,0.06);
}

.main-nav a.active-nav::after {
    content: "";

    position: absolute;

    bottom: 3px;

    left: 20%;

    width: 60%;

    height: 2px;

    border-radius: 10px;

    background: #00ffc3;

    box-shadow:
        0 0 10px rgba(0,255,195,0.7);
}

.main-nav .register-link {
    color: #07130f;

    background:
        linear-gradient(
            135deg,
            #00ffc3,
            #00c994
        );

    font-weight: 800;

    box-shadow:
        0 5px 20px rgba(0,255,195,0.12);
}

.main-nav .register-link:hover {
    color: #00120e;

    background:
        linear-gradient(
            135deg,
            #35ffd2,
            #00d8a1
        );

    transform:
        translateY(-2px)
        scale(1.02);
}

.main-nav .logout-link {
    color: #ff8585;

    background:
        rgba(255,80,80,0.06);

    border:
        1px solid rgba(255,80,80,0.08);
}

.main-nav .logout-link:hover {
    color: #ffb0b0;

    background:
        rgba(255,80,80,0.12);
}


/* موبایل */

@media (max-width: 900px) {

    .header .container {
        flex-direction: column;

        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main-nav {
        width: 100%;

        gap: 5px;
    }

    .main-nav a {
        padding: 8px 10px;

        font-size: 11px;
    }

}


@media (max-width: 600px) {

    .main-nav {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        width: 100%;
    }

    .main-nav a {
        text-align: center;

        padding: 10px 4px;

        font-size: 10px;
    }

}

/* ==========================================
   ADMIN PANEL
========================================== */

.admin-body {
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(100,80,255,0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0,255,195,0.08),
            transparent 35%
        ),
        #070b14;
}


.admin-login-page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;
}


.admin-login-card {
    width: min(430px, 100%);

    padding: 45px;

    text-align: center;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(30px);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.5);
}


.admin-lock {
    font-size: 65px;

    margin-bottom: 15px;
}


.admin-login-card h1 {
    font-size: 32px;
}


.admin-login-card p {
    color: #7d8997;
}


.admin-login-card form {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 25px 0;
}


.admin-login-card input,
.admin-form-card input,
.admin-form-card textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px;

    border-radius: 14px;

    border:
        1px solid rgba(255,255,255,0.1);

    background:
        rgba(0,0,0,0.25);

    color: white;

    outline: none;

    font-family: inherit;
}


.admin-login-card button,
.admin-form-card button {
    border: none;

    padding: 14px;

    border-radius: 14px;

    cursor: pointer;

    font-family: inherit;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #00ffc3,
            #00c994
        );

    color: #00120e;
}


.admin-login-card a {
    color: #00ffc3;

    text-decoration: none;
}


.admin-container {
    width: min(1200px, calc(100% - 30px));

    margin: 50px auto;
}


.admin-title {
    font-size: 32px;

    margin-bottom: 30px;
}


.admin-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.admin-stat {
    padding: 25px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.055);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);
}


.admin-stat span {
    font-size: 30px;
}


.admin-stat strong {
    display: block;

    font-size: 32px;

    color: #00ffc3;

    margin-top: 10px;
}


.admin-stat p {
    color: #788493;
}


.admin-actions {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin: 30px 0;
}


.admin-actions a,
.admin-button {
    display: block;

    padding: 18px;

    text-align: center;

    border-radius: 16px;

    color: #dce2e8;

    text-decoration: none;

    background:
        rgba(255,255,255,0.055);

    border:
        1px solid rgba(255,255,255,0.08);

    transition: .25s;
}


.admin-actions a:hover,
.admin-button:hover {
    transform: translateY(-3px);

    color: #00ffc3;

    border-color:
        rgba(0,255,195,0.2);
}


.admin-panel {
    padding: 25px;

    margin-top: 25px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);
}


.admin-table-head,
.admin-table-row {
    display: grid;

    grid-template-columns:
        1fr 2fr 2fr;

    gap: 15px;

    align-items: center;

    padding: 15px;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}


.admin-table-head {
    color: #6f7c8b;

    font-size: 12px;
}


.admin-table-row:last-child {
    border-bottom: none;
}


.green {
    color: #00ffc3;

    font-weight: 800;
}


.admin-heading {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}


.admin-matches {
    display: grid;

    gap: 15px;
}


.admin-match-card {
    padding: 25px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);
}


.match-info {
    display: grid;

    grid-template-columns:
        1fr 60px 1fr;

    align-items: center;

    text-align: center;

    font-size: 18px;
}


.match-info span {
    color: #00ffc3;

    font-weight: 900;
}


.match-meta {
    margin: 18px 0;

    color: #7e8a98;

    line-height: 2;
}


.result-box {
    padding: 15px;

    border-radius: 15px;

    text-align: center;

    color: #00ffc3;

    background:
        rgba(0,255,195,0.06);
}


.result-form {
    display: grid;

    grid-template-columns:
        1fr 30px 1fr;

    gap: 8px;

    align-items: center;
}


.result-form input {
    padding: 12px;

    width: 100%;

    box-sizing: border-box;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,0.1);

    background:
        rgba(0,0,0,0.25);

    color: white;

    outline: none;
}


.result-form button {
    grid-column: 1 / -1;

    padding: 12px;

    border: none;

    border-radius: 12px;

    background: #00ffc3;

    font-weight: 800;

    cursor: pointer;
}


.delete-button {
    margin-top: 12px;

    padding: 10px 15px;

    border: none;

    border-radius: 10px;

    background:
        rgba(255,70,70,0.1);

    color: #ff8b8b;

    cursor: pointer;
}


.admin-form-card {
    max-width: 650px;

    margin: auto;

    padding: 35px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);
}


.admin-form-card h2 {
    margin-bottom: 25px;
}


.admin-form-card label {
    display: block;

    color: #8995a3;

    margin:
        15px 0 7px;
}


.admin-form-card textarea {
    min-height: 120px;

    resize: vertical;
}


.admin-form-card button {
    width: 100%;

    margin-top: 20px;
}


.reward-admin-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}


.reward-admin-row p {
    color: #7f8b99;
}


.reward-admin-row > span {
    color: #00ffc3;

    white-space: nowrap;
}


@media (max-width: 800px) {

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

    .admin-actions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 550px) {

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

    .admin-heading {
        flex-direction: column;

        gap: 15px;

        align-items: stretch;
    }

    .match-info {
        font-size: 14px;
    }

    .admin-table {
        overflow-x: auto;
    }

    .admin-table-head,
    .admin-table-row {
        min-width: 600px;
    }

}
/* ================================
   Glass Bank Card
================================ */

.bank-card {
    margin-top: 25px;
    padding: 25px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.bank-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bank-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 28px;
}

.bank-card h3 {
    margin: 0 0 5px;
}

.bank-card p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
}

.bank-card label {
    display: block;
    margin-bottom: 8px;
}

.bank-card input {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(0, 0, 0, 0.18);

    color: white;

    font-size: 16px;

    outline: none;
}

.bank-card input:focus {
    border-color: rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.1);
}

.bank-card button {
    width: 100%;

    margin-top: 15px;

    padding: 14px;

    border: none;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.15);

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: 0.2s;
}

.bank-card button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.card-box {
    width: min(500px, 90%);
    margin: 30px auto;
    padding: 30px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 25px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    text-align: center;
}

.card-icon {
    font-size: 45px;
    margin-bottom: 10px;
}

.card-box h2 {
    margin-bottom: 10px;
}

.card-box p {
    opacity: 0.8;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.card-form input {
    width: 100%;
    box-sizing: border-box;

    padding: 15px;

    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.08);
    color: white;

    text-align: center;
    font-size: 17px;
}

.card-form button {
    padding: 14px;

    border: none;
    border-radius: 15px;

    cursor: pointer;

    font-size: 16px;
    font-weight: bold;
}

.card-number {
    direction: ltr;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.card-number span {
    opacity: 0.5;
}