/* =========================================================
   NEXUS ARENA
   ========================================================= */


:root {

    --bg: #070809;

    --bg-soft: #0b0d10;

    --card: #111419;

    --card-hover: #161a20;

    --line: rgba(255, 255, 255, 0.09);

    --text: #f5f7fa;

    --text-soft: #9ba3af;

    --green: #c4ff38;

    --cyan: #00d9ff;

    --purple: #8b5cf6;

    --header-height: 80px;

    --title-font: "Barlow Condensed", sans-serif;

    --body-font: "Inter", sans-serif;

}


/* =========================================================
   RESET
   ========================================================= */


* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    background: var(--bg);

    color: var(--text);

    font-family: var(--body-font);

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    display: block;

    width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input {

    font: inherit;

}


button {

    color: inherit;

}


.container {

    width: min(1180px, calc(100% - 50px));

    margin: 0 auto;

}



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


.header {

    position: fixed;

    z-index: 1000;

    top: 0;

    left: 0;

    width: 100%;

    height: var(--header-height);

    display: flex;

    align-items: center;

    background: rgba(7, 8, 9, 0.78);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid transparent;

    transition: 0.25s ease;

}


.header.scrolled {

    height: 70px;

    background: rgba(7, 8, 9, 0.95);

    border-bottom-color: var(--line);

}


.header-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}



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


.logo {

    display: flex;

    align-items: center;

    gap: 11px;

}


.logo-symbol {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    background: var(--green);

    color: #080b04;

    font-family: var(--title-font);

    font-size: 1.6rem;

    font-weight: 900;

    transform: skew(-8deg);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 0.82;

}


.logo-text strong {

    font-family: var(--title-font);

    font-size: 1.3rem;

    letter-spacing: 0.07em;

}


.logo-text span {

    margin-top: 7px;

    color: var(--green);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.35em;

}



/* =========================================================
   NAV
   ========================================================= */


.nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.nav-link {

    position: relative;

    padding: 30px 0;

    color: var(--text-soft);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition: 0.2s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 19px;

    width: 0;

    height: 2px;

    background: var(--green);

    transition: 0.2s ease;

}


.nav-link:hover,
.nav-link.active {

    color: white;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.header-button {

    padding: 12px 20px;

    border: 1px solid var(--green);

    color: var(--green);

    font-family: var(--title-font);

    font-weight: 800;

    letter-spacing: 0.08em;

    transition: 0.2s ease;

}


.header-button:hover {

    background: var(--green);

    color: #080b04;

}


.menu-button {

    display: none;

    width: 44px;

    height: 44px;

    padding: 10px;

    border: 1px solid var(--line);

    background: transparent;

    cursor: pointer;

}


.menu-button span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    background: white;

}



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


.hero {

    position: relative;

    min-height: 810px;

    padding-top: var(--header-height);

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 76% 34%,
            rgba(0, 217, 255, 0.12),
            transparent 22%
        ),

        radial-gradient(
            circle at 22% 22%,
            rgba(196, 255, 56, 0.07),
            transparent 25%
        ),

        linear-gradient(
            120deg,
            #070809 0%,
            #0b1016 55%,
            #070809 100%
        );

}


.hero-lines {

    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );

}


.hero-container {

    position: relative;

    z-index: 5;

    min-height: 720px;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    align-items: center;

    gap: 80px;

}



/* HERO CONTENT */


.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--green);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.eyebrow span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 15px rgba(196,255,56,0.7);

}


.hero h1 {

    max-width: 700px;

    margin: 0;

    font-family: var(--title-font);

    font-size: clamp(5rem, 8vw, 8.6rem);

    font-weight: 900;

    line-height: 0.76;

    letter-spacing: -0.04em;

    text-transform: uppercase;

}


.hero h1 span {

    display: block;

    color: var(--green);

}


.hero-content > p {

    max-width: 580px;

    margin: 30px 0;

    color: var(--text-soft);

    font-size: 1rem;

    line-height: 1.8;

}



/* BUTTONS */


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 23px;

    border: 1px solid transparent;

    cursor: pointer;

    font-family: var(--title-font);

    font-size: 0.92rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    transition: 0.2s ease;

}


.button-primary {

    background: var(--green);

    color: #071000;

}


.button-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(196,255,56,0.16);

}


.button-secondary {

    border-color: rgba(255,255,255,0.23);

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

}


.button-secondary:hover {

    border-color: white;

}


.button-white {

    background: white;

    color: #080a0c;

}



/* HERO DATA */


.hero-data {

    display: flex;

    gap: 30px;

    margin-top: 42px;

}


.hero-data div {

    min-width: 90px;

    padding-right: 30px;

    border-right: 1px solid var(--line);

}


.hero-data div:last-child {

    border: 0;

}


.hero-data strong {

    display: block;

    font-family: var(--title-font);

    font-size: 1.9rem;

}


.hero-data span {

    color: #6f7782;

    font-size: 0.6rem;

    font-weight: 700;

    letter-spacing: 0.15em;

}



/* HERO IMAGE */


.hero-image-container {

    position: relative;

}


.hero-image-frame {

    position: relative;

    min-height: 530px;

    overflow: hidden;

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

    box-shadow:
        0 35px 80px rgba(0,0,0,0.42);

    transform:
        perspective(1200px)
        rotateY(-4deg);

}


.hero-image {

    position: absolute;

    inset: 0;

    height: 100%;

    object-fit: cover;

}


.hero-gradient {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to top,
            rgba(7,8,9,0.98) 5%,
            rgba(7,8,9,0.55) 42%,
            transparent 75%
        );

}


.hero-image-info {

    position: absolute;

    z-index: 5;

    left: 30px;

    right: 30px;

    bottom: 28px;

}


.small-label {

    display: inline-block;

    padding: 7px 10px;

    margin-bottom: 13px;

    background: var(--green);

    color: #081000;

    font-size: 0.6rem;

    font-weight: 800;

    letter-spacing: 0.15em;

}


.hero-image-info h2 {

    margin: 0;

    font-family: var(--title-font);

    font-size: 2.6rem;

    line-height: 1;

}


.hero-image-info p {

    margin: 7px 0 20px;

    color: #b8c0cb;

    font-size: 0.82rem;

}


.hero-score {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding-top: 17px;

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

}


.hero-score span {

    color: #7f8996;

    font-size: 0.6rem;

    font-weight: 700;

    letter-spacing: 0.16em;

}


.hero-score strong {

    color: var(--green);

    font-family: var(--title-font);

    font-size: 2.4rem;

}



/* FLOATING BOXES */


.floating-box {

    position: absolute;

    z-index: 10;

    padding: 11px 14px;

    background: #0a0c0f;

    border: 1px solid var(--line);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.35);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.14em;

}


.floating-box-one {

    left: -35px;

    bottom: 85px;

}


.floating-box-two {

    top: 40px;

    right: -25px;

    color: var(--cyan);

}


.online-dot {

    display: inline-block;

    width: 7px;

    height: 7px;

    margin-right: 6px;

    border-radius: 50%;

    background: var(--green);

}



/* =========================================================
   MARQUEE
   ========================================================= */


.marquee {

    position: absolute;

    z-index: 20;

    bottom: 0;

    left: 0;

    width: 100%;

    overflow: hidden;

    background: var(--green);

    color: #081000;

}


.marquee-content {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 24px;

    padding: 11px 0;

    animation:
        marquee 28s linear infinite;

    font-family: var(--title-font);

    font-size: 0.9rem;

    font-weight: 800;

    letter-spacing: 0.08em;

}


@keyframes marquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}



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


.section {

    padding: 110px 0;

}


.section-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 42px;

}


.section-label {

    color: var(--green);

    font-size: 0.67rem;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.section-header h2 {

    margin: 8px 0 0;

    font-family: var(--title-font);

    font-size: clamp(3.2rem, 5.5vw, 5rem);

    font-weight: 900;

    line-height: 0.88;

}


.section-header h2 span {

    color: var(--green);

}


.section-description {

    max-width: 380px;

    margin: 0;

    color: var(--text-soft);

    font-size: 0.83rem;

    line-height: 1.7;

}



/* =========================================================
   FILTERS
   ========================================================= */


.filters {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}


.filter {

    padding: 9px 14px;

    border: 1px solid var(--line);

    background: transparent;

    color: var(--text-soft);

    cursor: pointer;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.07em;

    transition: 0.2s ease;

}


.filter:hover,
.filter.active {

    background: var(--green);

    border-color: var(--green);

    color: #081000;

}



/* =========================================================
   REVIEWS
   ========================================================= */


.reviews {

    background: #080a0c;

}


.reviews-grid {

    display: grid;

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

    gap: 18px;

}


.review-card {

    overflow: hidden;

    background: var(--card);

    border: 1px solid var(--line);

    transition: 0.25s ease;

}


.review-card:hover {

    transform: translateY(-5px);

    background: var(--card-hover);

    border-color:
        rgba(196,255,56,0.38);

}


.review-card.hidden {

    display: none;

}


.review-large {

    grid-column: span 2;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

}


.review-image {

    position: relative;

    min-height: 240px;

    overflow: hidden;

}


.review-large .review-image {

    min-height: 380px;

}


.review-image img {

    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;

}


.review-card:hover img {

    transform: scale(1.045);

}


.review-score {

    position: absolute;

    top: 15px;

    right: 15px;

    min-width: 52px;

    padding: 9px 10px;

    background: var(--green);

    color: #081000;

    font-family: var(--title-font);

    font-size: 1.35rem;

    font-weight: 900;

    text-align: center;

}


.review-content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 24px;

}


.review-large .review-content {

    justify-content: center;

    padding: 36px;

}


.review-meta {

    display: flex;

    gap: 12px;

    margin-bottom: 12px;

    color: var(--green);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.12em;

}


.review-meta span:last-child {

    color: #69727d;

}


.review-content h3 {

    margin: 0;

    font-family: var(--title-font);

    font-size: 1.65rem;

    font-weight: 800;

    line-height: 1;

}


.review-large .review-content h3 {

    font-size: 2.4rem;

}


.review-content p {

    margin: 14px 0 22px;

    color: var(--text-soft);

    font-size: 0.82rem;

    line-height: 1.7;

}


.read-more {

    margin-top: auto;

    font-family: var(--title-font);

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.1em;

}


.read-more span {

    margin-left: 4px;

    color: var(--green);

    transition: 0.2s ease;

}


.read-more:hover span {

    margin-left: 9px;

}



/* =========================================================
   FEATURE
   ========================================================= */


.feature {

    padding: 90px 0;

    background:

        linear-gradient(
            90deg,
            rgba(196,255,56,0.045),
            transparent 35%
        ),

        #0b0e12;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}


.feature-container {

    display: grid;

    grid-template-columns: 0.95fr 1fr;

    align-items: center;

    gap: 75px;

}


.feature-image {

    overflow: hidden;

    border: 1px solid var(--line);

    box-shadow:
        0 25px 65px rgba(0,0,0,0.38);

}


.feature-image img {

    aspect-ratio: 16 / 11;

    object-fit: cover;

}


.feature-content h2 {

    margin: 10px 0 22px;

    font-family: var(--title-font);

    font-size: clamp(3.5rem, 6vw, 5.7rem);

    font-weight: 900;

    line-height: 0.82;

}


.feature-content h2 span {

    color: var(--green);

}


.feature-content p {

    max-width: 570px;

    margin-bottom: 28px;

    color: var(--text-soft);

    font-size: 0.9rem;

    line-height: 1.8;

}



/* =========================================================
   TOURNAMENTS
   ========================================================= */


.tournaments {

    background:

        radial-gradient(
            circle at 20% 65%,
            rgba(139,92,246,0.08),
            transparent 28%
        ),

        #080a0c;

}


.tournament-grid {

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 20px;

}


.main-tournament {

    min-height: 520px;

    padding: 32px;

    background:

        linear-gradient(
            145deg,
            rgba(139,92,246,0.18),
            transparent 52%
        ),

        linear-gradient(
            320deg,
            rgba(0,217,255,0.08),
            transparent 42%
        ),

        var(--card);

    border: 1px solid rgba(139,92,246,0.35);

}


.tournament-status {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #737c87;

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.tournament-status span:first-child {

    color: var(--green);

}


.tournament-status i {

    display: inline-block;

    width: 7px;

    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background: var(--green);

}


.tournament-game {

    margin-top: 80px;

    color: var(--cyan);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.main-tournament h3 {

    margin: 8px 0 28px;

    font-family: var(--title-font);

    font-size: clamp(4rem, 7vw, 6.5rem);

    font-weight: 900;

    line-height: 0.75;

}


.main-tournament h3 span {

    display: block;

    color: var(--green);

}


.tournament-details {

    display: grid;

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

    padding: 18px 0;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}


.tournament-details small {

    display: block;

    color: #69737f;

    font-size: 0.57rem;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.tournament-details strong {

    display: block;

    margin-top: 5px;

    font-family: var(--title-font);

    font-size: 1.4rem;

}


.countdown {

    display: flex;

    gap: 27px;

    margin: 27px 0;

}


.countdown strong {

    display: block;

    font-family: var(--title-font);

    font-size: 2rem;

}


.countdown span {

    display: block;

    color: #69737f;

    font-size: 0.55rem;

    font-weight: 800;

    letter-spacing: 0.12em;

}



/* TOURNAMENT LIST */


.tournament-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}


.tournament-card {

    min-height: 158px;

    display: grid;

    grid-template-columns: 80px 1fr 44px;

    align-items: center;

    gap: 22px;

    padding: 20px;

    background: var(--card);

    border: 1px solid var(--line);

    transition: 0.2s ease;

}


.tournament-card:hover {

    transform: translateX(5px);

    background: var(--card-hover);

    border-color: rgba(0,217,255,0.3);

}


.event-date {

    min-height: 92px;

    display: grid;

    place-content: center;

    text-align: center;

    background: #0a0c0f;

    border: 1px solid var(--line);

}


.event-date strong {

    font-family: var(--title-font);

    font-size: 2rem;

    line-height: 1;

}


.event-date span {

    margin-top: 5px;

    color: var(--green);

    font-size: 0.6rem;

    font-weight: 800;

    letter-spacing: 0.12em;

}


.event-info > span {

    color: var(--cyan);

    font-size: 0.57rem;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.event-info h4 {

    margin: 7px 0;

    font-family: var(--title-font);

    font-size: 1.65rem;

}


.event-info p {

    margin: 0;

    color: var(--text-soft);

    font-size: 0.74rem;

}


.event-button {

    width: 42px;

    height: 42px;

    background: transparent;

    border: 1px solid var(--line);

    cursor: pointer;

    font-size: 1.1rem;

    transition: 0.2s ease;

}


.tournament-card:hover .event-button {

    border-color: var(--green);

    color: var(--green);

}



/* =========================================================
   ARCHIVE
   ========================================================= */


.archive {

    background: #090b0e;

    border-top: 1px solid var(--line);

}


.archive-grid {

    display: grid;

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

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);

}


.archive-grid article {

    min-height: 270px;

    padding: 27px;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

    transition: 0.2s ease;

}


.archive-grid article:hover {

    background: var(--green);

    color: #081000;

}


.archive-number {

    color: var(--green);

    font-family: var(--title-font);

    font-size: 0.8rem;

    font-weight: 800;

}


.archive-grid article:hover .archive-number {

    color: rgba(8,16,0,0.6);

}


.archive-grid h3 {

    margin: 105px 0 9px;

    font-family: var(--title-font);

    font-size: 1.9rem;

}


.archive-grid p {

    margin: 0;

    color: var(--text-soft);

    font-size: 0.76rem;

    line-height: 1.55;

}


.archive-grid article:hover p {

    color: rgba(8,16,0,0.65);

}



/* =========================================================
   NEWSLETTER
   ========================================================= */


.newsletter {

    padding: 75px 0;

    background: var(--green);

    color: #081000;

}


.newsletter-container {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 60px;

}


.newsletter-container > div > span {

    color: rgba(8,16,0,0.58);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.17em;

}


.newsletter h2 {

    margin: 7px 0 0;

    font-family: var(--title-font);

    font-size: clamp(3.5rem, 6vw, 5.4rem);

    line-height: 0.82;

}


.newsletter h2 strong {

    display: block;

}


.newsletter-form {

    display: grid;

    grid-template-columns: 1fr auto;

}


.newsletter-form input {

    min-width: 0;

    height: 55px;

    padding: 0 18px;

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

    border: 2px solid #081000;

    border-right: 0;

    border-radius: 0;

    outline: none;

    color: #081000;

}


.newsletter-form input::placeholder {

    color: rgba(8,16,0,0.55);

}


.newsletter-form button {

    padding: 0 21px;

    border: 2px solid #081000;

    background: #081000;

    color: white;

    cursor: pointer;

    font-family: var(--title-font);

    font-weight: 800;

    letter-spacing: 0.08em;

}



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


.footer {

    padding: 60px 0 25px;

    background: #050607;

}


.footer-container {

    display: flex;

    justify-content: space-between;

    gap: 50px;

}


.footer-container p {

    max-width: 380px;

    color: var(--text-soft);

    font-size: 0.75rem;

}


.footer-links {

    display: grid;

    grid-template-columns: repeat(2, auto);

    gap: 13px 35px;

    font-size: 0.75rem;

    color: #aeb6c1;

}


.footer-links a:hover {

    color: var(--green);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 42px;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    color: #56606b;

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.13em;

}



/* =========================================================
   TOAST
   ========================================================= */


.toast {

    position: fixed;

    z-index: 2000;

    right: 25px;

    bottom: 25px;

    max-width: 330px;

    padding: 15px 18px;

    background: #11151a;

    border: 1px solid rgba(196,255,56,0.45);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.42);

    color: white;

    font-size: 0.76rem;

    opacity: 0;

    transform: translateY(20px);

    pointer-events: none;

    transition: 0.25s ease;

}


.toast.show {

    opacity: 1;

    transform: translateY(0);

}



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


@media (max-width: 1050px) {


    .header-button {

        display: none;

    }


    .hero-container {

        grid-template-columns: 1fr 0.8fr;

        gap: 40px;

    }


    .reviews-grid {

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

    }


    .review-large {

        grid-column: span 2;

    }


    .feature-container {

        gap: 45px;

    }


    .tournament-grid {

        grid-template-columns: 1fr;

    }


    .tournament-list {

        display: grid;

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

    }


    .tournament-card {

        min-height: 270px;

        grid-template-columns: 1fr;

        align-items: start;

    }


    .event-date {

        width: 76px;

    }


    .archive-grid {

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

    }


}


@media (max-width: 800px) {


    :root {

        --header-height: 72px;

    }


    .container {

        width:
            min(100% - 34px, 1180px);

    }


    .section {

        padding: 80px 0;

    }


    .menu-button {

        display: block;

        margin-left: auto;

    }


    .nav {

        position: fixed;

        top: 70px;

        left: 0;

        width: 100%;

        height: calc(100vh - 70px);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 20px 25px;

        background: rgba(7,8,9,0.99);

        transform: translateX(100%);

        transition: 0.25s ease;

    }


    .nav.open {

        transform: translateX(0);

    }


    .nav-link {

        padding: 21px 0;

        border-bottom: 1px solid var(--line);

        font-family: var(--title-font);

        font-size: 1.15rem;

    }


    .nav-link::after {

        display: none;

    }


    .hero {

        min-height: auto;

    }


    .hero-container {

        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 80px;

        padding-bottom: 110px;

    }


    .hero h1 {

        font-size:
            clamp(4.8rem, 16vw, 7rem);

    }


    .hero-image-frame {

        min-height: 470px;

        transform: none;

    }


    .floating-box-one {

        left: -8px;

    }


    .floating-box-two {

        right: -8px;

    }


    .section-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .reviews-grid {

        grid-template-columns: 1fr;

    }


    .review-large {

        grid-column: auto;

        display: block;

    }


    .review-large .review-image {

        min-height: 300px;

    }


    .feature-container {

        grid-template-columns: 1fr;

    }


    .tournament-list {

        grid-template-columns: 1fr;

    }


    .tournament-card {

        min-height: auto;

        grid-template-columns:
            78px 1fr 44px;

        align-items: center;

    }


    .archive-grid {

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

    }


    .newsletter-container {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-container {

        flex-direction: column;

    }


}


@media (max-width: 620px) {


    .hero-data {

        gap: 17px;

    }


    .hero-data div {

        padding-right: 17px;

    }


    .hero-image-frame {

        min-height: 410px;

    }


    .countdown {

        gap: 18px;

    }


    .archive-grid {

        grid-template-columns: 1fr;

    }


    .archive-grid article {

        min-height: 200px;

    }


    .archive-grid h3 {

        margin-top: 55px;

    }


    .newsletter-form {

        grid-template-columns: 1fr;

        gap: 8px;

    }


    .newsletter-form input {

        border-right: 2px solid #081000;

    }


    .newsletter-form button {

        min-height: 52px;

    }


    .footer-bottom {

        flex-direction: column;

    }


}