/* =========================
   GLOBAL RESET
========================= */

/* Remove default browser spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for future section links and back-to-top */
html {
    scroll-behavior: smooth;
}

/* Main website body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    min-height: 100vh;
}

/* Remove default link underline */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove list dots */
ul {
    list-style: none;
}

/* Make images responsive */
img {
    max-width: 100%;
    display: block;
}

/* =========================
   NAVBAR WRAPPER
========================= */

/*
    Header gives space from the top.
    Sticky keeps navbar visible when scrolling.
*/
.site-header {
    width: 100%;
    padding: 30px 28px 0;
    position: sticky;
    top: 0;
    z-index: 7000;
}

/*
    Main navbar card.
    White rounded box with soft shadow.
*/
.navbar {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(20, 20, 20, 0.14);
    border-radius: 28px;

    padding: 16px 22px;

    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(14px);
}

/* =========================
   LOGO / BRAND
========================= */

/* Logo and ALYYON text wrapper */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Logo size */
.nav-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

/* ALYYON text */
.nav-brand-text {
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #101010;
    line-height: 1;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

/* Menu wrapper */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    flex: 1;
}

/*
    This wrapper holds only the nav links.
    The animated underline moves inside this wrapper.
*/
.nav-links-wrap {
    position: relative;

    display: flex;
    align-items: center;
}

/* Links row */
.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Every nav link */
.nav-links a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #151515;
    font-size: 0.95rem;
    font-weight: 600;

    padding: 10px 0;

    transition: color 0.25s ease;
}

/* Link hover and active color */
.nav-links a:hover,
.nav-links a.active {
    color: #e00000;
}

/*
    Old underline is disabled.
    The new underline is .nav-indicator controlled by JS.
*/
.nav-links a.active::after {
    display: none !important;
}

/*
    Animated red underline.
    JavaScript changes left and width.
*/
.nav-indicator {
    position: absolute;

    left: 0;
    bottom: -14px;

    width: 0;
    height: 3px;

    background: #e00000;
    border-radius: 50px;

    opacity: 0;
    pointer-events: none;

    transition:
        left 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.2s ease;
}

/*
    Used on first load so underline appears directly under active page
    instead of sliding from the far left.
*/
.nav-indicator.no-transition {
    transition: none !important;
}

/* Hide mobile-only icons on desktop */
.mobile-link-icon,
.mobile-link-arrow {
    display: none;
}

/* =========================
   CTA BUTTON
========================= */

/* Red Explore Events button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: max-content;

    background: linear-gradient(180deg, #ff1c1c 0%, #c70000 100%);
    color: #ffffff;

    font-size: 0.96rem;
    font-weight: 800;

    padding: 15px 22px;
    border-radius: 16px;

    border: 2px solid #ffffff;

    box-shadow:
        0 4px 0 #850000,
        0 10px 18px rgba(224, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Button hover effect */
.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 6px 0 #850000,
        0 14px 22px rgba(224, 0, 0, 0.42);
}

.cta-icon {
    font-size: 1rem;
}

.cta-arrow {
    font-size: 1.5rem;
    line-height: 1;
}

/* =========================
   MOBILE NAV ITEMS HIDDEN ON DESKTOP
========================= */

.mobile-menu-head {
    display: none;
}

.nav-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

/* =========================
   TEMPORARY PAGE TEST CONTENT
========================= */

/*
    This is temporary.
    We will replace this area with the homepage hero section next.
*/
.test-page {
    max-width: 1100px;
    margin: 90px auto;
    padding: 40px 24px;
    text-align: center;
    min-height: 55vh;
}

.test-page h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.test-page p {
    color: #555555;
    font-size: 1.1rem;
}

/* =========================
   FOOTER MAIN STYLE
========================= */

.site-footer {
    padding: 90px 28px 34px;
    background:
        radial-gradient(circle at 12% 20%, rgba(224, 0, 0, 0.05), transparent 28%),
        radial-gradient(circle at 88% 35%, rgba(0, 0, 0, 0.05), transparent 32%),
        #ffffff;
}

/* Main footer card */
.footer-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    background:
        linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
        radial-gradient(circle at right center, rgba(0,0,0,0.08), transparent 35%);

    border: 1px solid rgba(20, 20, 20, 0.14);
    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Footer top content grid */
.footer-main {
    position: relative;

    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1fr 1.35fr;
    gap: 46px;

    padding: 58px 38px 52px;
}

/* Soft background detail */
.footer-main::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;

    width: 42%;
    height: 100%;

    background:
        linear-gradient(to left, rgba(0,0,0,0.08), transparent),
        radial-gradient(circle at 75% 45%, rgba(0,0,0,0.08), transparent 35%);

    opacity: 0.45;
    pointer-events: none;
}

.footer-main > * {
    position: relative;
    z-index: 1;
}

/* Footer brand section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #111111;
}

.footer-brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.footer-brand span {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Decorative line under footer logo */
.footer-title-line {
    width: 100%;
    max-width: 275px;

    display: flex;
    align-items: center;
    gap: 8px;

    margin: 18px 0 26px;
}

.footer-title-line span {
    height: 1px;
    flex: 1;
    background: rgba(0, 0, 0, 0.22);
}

.footer-title-line b {
    width: 9px;
    height: 9px;

    background: #e00000;
    transform: rotate(45deg);
}

.footer-brand-section p {
    max-width: 300px;
    color: #222222;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-brand-section strong {
    color: #111111;
    margin-bottom: 26px;
}

/* Social icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #e00000;

    border: 1px solid rgba(20, 20, 20, 0.16);
    border-radius: 50%;

    font-size: 1rem;
    font-weight: 900;

    box-shadow:
        0 7px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: #e00000;
    color: #ffffff;
}

/* Footer groups */
.footer-group {
    min-width: 0;
}

.footer-group-title {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;

    background: transparent;
    border: none;

    color: #111111;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;

    cursor: default;

    padding: 0 0 16px;
    margin-bottom: 18px;

    position: relative;
}

/* Title underline */
.footer-group-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 150px;
    height: 1px;

    background: rgba(0, 0, 0, 0.18);
}

/* Red diamond under title */
.footer-group-title::before {
    content: "";
    position: absolute;
    left: 74px;
    bottom: -4px;

    width: 8px;
    height: 8px;

    background: #e00000;
    transform: rotate(45deg);
}

.footer-title-icon {
    color: #e00000;
    font-size: 1.45rem;
    line-height: 1;
}

.footer-arrow {
    display: none;
    margin-left: auto;
    color: #e00000;
    font-size: 1.3rem;
}

/* Footer link list */
.footer-group-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-group-content a {
    width: fit-content;

    color: #222222;
    font-size: 0.98rem;
    line-height: 1.3;

    position: relative;

    padding-left: 24px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-group-content a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;

    color: #e00000;
    font-size: 1.8rem;
    line-height: 1;

    transform: translateY(-50%);
}

.footer-group-content a:hover {
    color: #e00000;
    transform: translateX(4px);
}

/* Contact section */
.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #222222;
}

.footer-contact-line span {
    color: #e00000;
    font-size: 1.35rem;
}

.footer-small-text {
    max-width: 300px;
    color: #222222;
    line-height: 1.7;
    margin-top: 18px;
}

/* Subscribe form */
.footer-subscribe {
    margin-top: 10px;
}

.footer-subscribe label {
    display: none;
}

.footer-input-wrap {
    width: 100%;
    max-width: 340px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border: 1px solid rgba(20, 20, 20, 0.14);
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.09);
}

.footer-input-wrap span {
    padding-left: 16px;
    color: #555555;
}

.footer-input-wrap input {
    width: 100%;
    min-width: 0;

    border: none;
    outline: none;

    padding: 16px 12px;

    font-size: 0.95rem;
    background: transparent;
}

.footer-input-wrap button {
    align-self: stretch;

    border: none;
    background: linear-gradient(180deg, #ff1c1c 0%, #c70000 100%);
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 900;

    padding: 0 20px;

    cursor: pointer;

    box-shadow: inset 0 -3px 0 #850000;
}

/* Footer bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;

    padding: 24px 38px;

    border-top: 1px solid rgba(20, 20, 20, 0.14);

    color: #222222;
    font-size: 0.95rem;
}

.footer-bottom p:nth-child(2) {
    text-align: center;
}

/* Back to top button */
.back-to-top {
    justify-self: end;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: #ffffff;
    color: #111111;

    border: 1px solid rgba(224, 0, 0, 0.42);
    border-radius: 12px;

    padding: 15px 24px;

    font-size: 0.95rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.back-to-top span {
    color: #e00000;
    font-size: 2rem;
    line-height: 0.7;
}

.back-to-top:hover {
    background: #e00000;
    color: #ffffff;
    transform: translateY(-2px);
}

.back-to-top:hover span {
    color: #ffffff;
}

/* ============================= */
/* Home Hero Section */
/* ============================= */

:root {
    --hero-bg: url("../img/hero-bg.png");

    /*
        About section background image.
        Keep hero-bg.jpg if you want the same Clash-style background,
        or replace it with: url("../img/about-bg.jpg") after adding that image.
    */
    --about-bg: url("../img/heroSection2.png");
}

.home-page {
    width: 100%;
    overflow: hidden;
}

.hero-section {
    position: relative;
    min-height: 92vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 140px 7% 90px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.82) 34%,
            rgba(255, 255, 255, 0.36) 62%,
            rgba(255, 255, 255, 0.05) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.08) 100%
        );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}

.hero-text {
    max-width: 650px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: #b50000;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 70px;
    height: 2px;
    background: #b50000;
    display: inline-block;
    position: relative;
}

.hero-eyebrow span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    width: 8px;
    height: 8px;
    background: #b50000;
    transform: translateY(-50%) rotate(45deg);
}

.hero-eyebrow span:last-child::after {
    right: auto;
    left: -6px;
}

.hero-section h1 {
    margin: 0;
    color: #111;
    font-size: clamp(46px, 7vw, 96px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.hero-section h1 strong {
    display: block;
    margin-top: 8px;
    color: #c40000;
    font-size: clamp(58px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow:
        0 3px 0 #570000,
        0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    max-width: 610px;
}

.hero-divider span {
    height: 2px;
    flex: 1;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.55),
        transparent
    );
}

.hero-divider img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hero-section h2 {
    margin: 0 0 18px;
    color: #171717;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.35;
    font-weight: 800;
}

.hero-section p {
    margin: 0;
    color: #242424;
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-btn {
    min-height: 64px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.hero-btn i {
    font-size: 24px;
}

.primary-btn {
    background: linear-gradient(135deg, #e00000, #970000);
    color: #fff;
    box-shadow: 0 10px 22px rgba(180, 0, 0, 0.35);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(180, 0, 0, 0.45);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.13);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.secondary-btn i {
    color: #b50000;
}

.secondary-btn:hover {
    transform: translateY(-4px);
    background: #fff;
}

.hero-stats {
    margin-top: 46px;
    width: fit-content;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 24px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.stat-box {
    min-width: 130px;
    text-align: center;
    padding: 0 18px;
}

.stat-box i {
    color: #b50000;
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-box h3 {
    margin: 0;
    color: #a70000;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.stat-box p {
    margin-top: 9px;
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.stat-line {
    width: 1px;
    height: 86px;
    background: rgba(0, 0, 0, 0.22);
}

.hero-bottom-shape {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 3;
    width: 100%;
    height: 78px;
    background: linear-gradient(135deg, #0b0b0b, #181818);
    clip-path: polygon(
        0 40%,
        12% 70%,
        14% 55%,
        50% 100%,
        86% 55%,
        88% 70%,
        100% 40%,
        100% 100%,
        0 100%
    );
}

.hero-bottom-shape::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(210, 0, 0, 0.9),
        transparent
    );
    height: 8px;
    top: 20px;
}

/* ============================= */
/* Short About Section */
/* ============================= */

.short-about-section {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: clamp(70px, 6vw, 95px) 7%;

    display: flex;
    align-items: center;
    justify-content: center;

  

    /*
        Full-width About background.
        The image covers the whole section like the hero section,
        while the white overlays keep the inner card easy to read.
    */
background:
    linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 246, 248, 0.22) 46%,
        rgba(255, 255, 255, 0.35) 100%
    ),
    var(--about-bg) center / cover no-repeat;

    overflow: hidden;
}

.short-about-wrapper {
    position: relative;
    width: min(1450px, 100%);
    margin: 0 auto;
    padding: 42px;


    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    align-items: center;
    gap: 50px;

    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.86);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

   backdrop-filter: blur(6px);
   -webkit-backdrop-filter: blur(6px);
}

/*
    The full section already has the background image,
    so this old faded circle is disabled to keep the layout cleaner.
*/
.short-about-wrapper::before {
    display: none;
}

.short-about-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 34px;
    height: 34px;
    background: #e00000;
    border: 4px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
}

.about-image-box {
    position: relative;
    z-index: 2;
}

.about-image-frame {
    position: relative;
    min-height: 560px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #eeeeee);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08),
        0 18px 38px rgba(0, 0, 0, 0.22);
}

.about-image-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 14px;
    border: 1px solid rgba(190, 0, 0, 0.18);
    z-index: 2;
    pointer-events: none;
}

.about-image-frame::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(190, 0, 0, 0.25));
    z-index: 1;
    pointer-events: none;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 3;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c00000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.section-eyebrow span {
    width: 70px;
    height: 2px;
    display: inline-block;
    background: #d00000;
    position: relative;
}

.section-eyebrow span:first-child::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #d00000;
    transform: translateY(-50%) rotate(45deg);
}

.section-eyebrow span:last-child::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #d00000;
    transform: translateY(-50%) rotate(45deg);
}

.about-content h2 {
    margin: 0;
    color: #161616;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.about-content h2 span {
    color: #d00000;
    text-shadow: 0 5px 14px rgba(208, 0, 0, 0.18);
}

.about-title-divider {
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 0 30px;
    color: #d00000;
}

.about-title-divider span {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.28), transparent);
}

.about-title-divider i {
    font-size: 13px;
}

.about-main-text,
.about-sub-text {
    max-width: 760px;
    color: #1d1d1d;
    font-size: 19px;
    line-height: 1.65;
    margin: 0 0 16px;
}


.about-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

.about-story-btn {
    min-width: 330px;
    min-height: 66px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    border-radius: 10px;
    background: linear-gradient(135deg, #f00000, #980000);
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 12px 24px rgba(190, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition: 0.25s ease;
}

.about-story-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 34px rgba(190, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.about-story-btn i:first-child {
    font-size: 26px;
}

.about-story-btn i:last-child {
    font-size: 22px;
}

/* ============================= */
/* About Me Flip Cards - Optimized */
/* ============================= */

/*
    This version keeps the smooth flip, adds a light optimized animated border,
    and avoids expensive glow/filter effects that can cause lag on mobile.
*/

.about-card-grid {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

/* Card background images.
   Because this file is inside /css/, image paths use ../img/ */
.about-card-grid .flip-card:nth-child(1) {
    --card-bg: url("../img/about-card-content.jpg");
}

.about-card-grid .flip-card:nth-child(2) {
    --card-bg: url("../img/about-card-tournament.jpg");
}

.about-card-grid .flip-card:nth-child(3) {
    --card-bg: url("../img/about-card-community.jpg");
}

.about-card-grid .flip-card:nth-child(4) {
    --card-bg: url("../img/about-card-global.jpg");
}

/* Main clickable card button */
.about-mini-card {
    --card-bg: url("../img/hero-bg.jpg");

    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 235px;
    padding: 0;

    border: none;
    outline: none;
    background: transparent;

    cursor: pointer;
    perspective: 1000px;
    font-family: inherit;
    text-align: center;

    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    isolation: isolate;
}

/* Small red diamond under every card */
.about-mini-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;

    width: 14px;
    height: 14px;

    background: #e00000;
    border: 2px solid #ffffff;

    transform: translateX(-50%) rotate(45deg);

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.24);
    z-index: 4;
}

/* Inner part that rotates */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 235px;

    border-radius: 16px;

    transform-style: preserve-3d;
    transform: translateZ(0);

    transition: transform 0.48s ease;
    will-change: transform;

    z-index: 2;
}

/* Flip state added by main.js */
.about-mini-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and back sides */
.flip-card-face {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    padding: 30px 18px 26px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    border-radius: 16px;
    overflow: hidden;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    border: 1px solid rgba(255, 255, 255, 0.86);

    box-shadow:
        0 13px 26px rgba(0, 0, 0, 0.13),
        inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

/* Front side */
.flip-card-front {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.82)
        ),
        var(--card-bg) center/cover no-repeat;
}

/* Back side - flipped card color */
.flip-card-back {
    transform: rotateY(180deg);

    /*
        Flipped card background.
        Soft Alyyon red/pink color with the card image still lightly visible.
    */
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.95), transparent 34%),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 234, 240, 0.97) 45%,
            rgba(255, 92, 123, 0.92) 100%
        ),
        var(--card-bg) center/cover no-repeat;
}

/* Soft overlay detail */
.flip-card-front::before,
.flip-card-back::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 38%),
        radial-gradient(circle at bottom right, rgba(224, 0, 0, 0.12), transparent 42%);

    pointer-events: none;
    z-index: 0;
}

.flip-card-front > *,
.flip-card-back > * {
    position: relative;
    z-index: 1;
}

/* Front icon */
.flip-card-front i {
    color: #d00000;
    font-size: 40px;
    margin-bottom: 17px;

    filter: drop-shadow(0 6px 10px rgba(208, 0, 0, 0.26));
}

/* Titles */
.flip-card-front h3,
.flip-card-back h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.flip-card-front h3 {
    color: #121212;
}

.flip-card-back h3 {
    color: #a00000;
}

/* Small divider line */
.flip-card-front span,
.flip-card-back span {
    width: 36px;
    height: 3px;

    display: block;

    margin: 15px auto 0;

    background: #d00000;
    border-radius: 99px;
}

.flip-card-back span {
    margin-bottom: 15px;
    background: #d00000;
}

/* Back text */
.flip-card-back p {
    margin: 0;

    color: #1f1f1f;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 600;
    overflow-wrap: break-word;
}

/* ============================= */
/* Optimized Animated Card Border */
/* ============================= */

/*
    The SVG border stays completely hidden when the card is idle.
    It only appears and animates when the card is hovered, focused, or flipped.
    Glow is applied only in the active state to avoid lag.
*/
.card-moving-border {
    position: absolute;
    inset: -5px;

    width: calc(100% + 10px);
    height: calc(100% + 10px);

    display: block;
    z-index: 5;

    pointer-events: none;
    overflow: visible;

    opacity: 0;
    visibility: hidden;
    transform: translateZ(0);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.25s ease;
}

.card-moving-border rect {
    fill: none;
    stroke: #ff1a1a;
    stroke-width: 2.65;
    stroke-linecap: round;
    stroke-linejoin: round;

    /* Short glowing line + long invisible gap */
    stroke-dasharray: 86 760;
    stroke-dashoffset: 0;

    vector-effect: non-scaling-stroke;

    animation: aboutCardBorderFlow 4.6s linear infinite;
    animation-play-state: paused;

    opacity: 1;
}

.about-mini-card:hover .card-moving-border,
.about-mini-card.is-flipped .card-moving-border,
.about-mini-card:focus-visible .card-moving-border {
    opacity: 1;
    visibility: visible;

    /* Glow only when active, so idle cards stay clean and fast */
    filter:
        drop-shadow(0 0 4px rgba(255, 0, 0, 0.95))
        drop-shadow(0 0 10px rgba(255, 0, 0, 0.55));
}

.about-mini-card:hover .card-moving-border rect,
.about-mini-card.is-flipped .card-moving-border rect,
.about-mini-card:focus-visible .card-moving-border rect {
    animation-play-state: running;
}

@keyframes aboutCardBorderFlow {
    to {
        stroke-dashoffset: -846;
    }
}

/* Desktop-only hover lift */
@media (hover: hover) and (pointer: fine) {
    .about-mini-card:hover .flip-card-inner {
        transform: translateY(-8px);
    }

    .about-mini-card:hover .card-moving-border {
        transform: translateY(-8px);
    }

    .about-mini-card.is-flipped:hover .flip-card-inner {
        transform: rotateY(180deg) translateY(-8px);
    }
}

/* Keyboard focus */
.about-mini-card:focus-visible .flip-card-face {
    box-shadow:
        0 13px 26px rgba(0, 0, 0, 0.13),
        0 0 0 3px rgba(224, 0, 0, 0.30);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .flip-card-inner {
        transition: none;
    }

    .card-moving-border rect {
        animation: none;
    }
}

/* ==================================================
   LET'S CONNECT SECTION
   ================================================== */

.lets-connect-section {
    position: relative;
    width: 100%;
    padding: 110px 20px 115px;
    overflow: hidden;
    background:
        /* linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.78)
        ), */
        url("../img/lets-connect-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Extra red glow and smoke feeling */
.lets-connect-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 50%, rgba(220, 0, 0, 0.16), transparent 34%),
        radial-gradient(circle at 92% 52%, rgba(220, 0, 0, 0.12), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(255, 0, 0, 0.13), transparent 38%);
    pointer-events: none;
    z-index: 1;
}

/* Soft bottom depth */
.lets-connect-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 160px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.88)
    );
    pointer-events: none;
    z-index: 1;
}

.lets-connect-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.30),
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.30)
        );
    z-index: 1;
    pointer-events: none;
}

.lets-connect-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1500px);
    margin: 0 auto;
}

/* ==================================================
   LET'S CONNECT HEADER
   ================================================== */

.lets-connect-header {
    max-width: 1250px;
    margin: 0 auto 45px;
    text-align: center;
}

.lets-connect-header h2 {
    margin: 0;
    color: #101010;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 4.4vw, 4.7rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    white-space: nowrap;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.9);
}

.lets-connect-header h2 span {
    display: inline;
    color: #d90000;
    white-space: nowrap;
}

.connect-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #df0000;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.connect-eyebrow span {
    width: 55px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #df0000,
        transparent
    );
}

.connect-eyebrow i {
    font-size: 0.72rem;
    filter: drop-shadow(0 0 6px rgba(223, 0, 0, 0.45));
}

.connect-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 24px auto 20px;
}

.connect-title-divider span {
    width: 88px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 0, 0, 0.95),
        transparent
    );
}

.connect-title-divider i {
    color: #e00000;
    font-size: 0.8rem;
    filter: drop-shadow(0 0 8px rgba(224, 0, 0, 0.55));
}

.lets-connect-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #141414;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.85;
}

/* ==================================================
   SOCIAL CARD GRID
   Desktop: 5 cards in one row
   ================================================== */

.connect-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* ==================================================
   SOCIAL CARD DESIGN
   ================================================== */

.connect-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 330px;
    padding: 42px 24px 26px;
    color: #111111;
    text-align: center;
    text-decoration: none;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 0.96));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.16),
        inset 0 0 0 5px rgba(255, 255, 255, 0.72);
    isolation: isolate;
    overflow: hidden;
    transform: translateY(0);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

/* Red side accents */
.connect-card::before,
.connect-card::after {
    content: "";
    position: absolute;
    top: 78px;
    width: 5px;
    height: 48px;
    background: linear-gradient(
        180deg,
        transparent,
        #ed0000,
        transparent
    );
    opacity: 0.95;
    z-index: 1;
}

.connect-card::before {
    left: 0;
}

.connect-card::after {
    right: 0;
}

/* Subtle premium shine */
.connect-card .connect-card-top-gem {
    position: absolute;
    top: 0;
    left: 50%;
    width: 86px;
    height: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.connect-card .connect-card-top-gem::before,
.connect-card .connect-card-top-gem::after {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.22)
    );
}

.connect-card .connect-card-top-gem::after {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.22),
        transparent
    );
}

.connect-card .connect-card-top-gem span {
    width: 16px;
    height: 16px;
    margin: 0 5px;
    background: linear-gradient(135deg, #ff1b1b, #b90000);
    border: 2px solid #ffffff;
    transform: rotate(45deg);
    box-shadow:
        0 0 0 1px rgba(180, 0, 0, 0.25),
        0 0 10px rgba(220, 0, 0, 0.58);
}

/* Hover border glow */
.connect-card:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 0, 0, 0.35);
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.22),
        0 0 28px rgba(220, 0, 0, 0.16),
        inset 0 0 0 5px rgba(255, 255, 255, 0.78);
}

.connect-card:focus-visible {
    outline: 3px solid rgba(224, 0, 0, 0.75);
    outline-offset: 5px;
}

/* Icon bubble */
.connect-icon {
    width: 86px;
    height: 86px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.18),
        inset 0 0 0 8px rgba(245, 245, 245, 0.95);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.connect-card:hover .connect-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.22),
        0 0 22px rgba(220, 0, 0, 0.18),
        inset 0 0 0 8px rgba(245, 245, 245, 0.95);
}

.connect-icon i {
    font-size: 2.6rem;
}

/* Brand icon colors */
.youtube-icon i {
    color: #ff0000;
}

.instagram-icon i {
    color: #e4405f;
}

.tiktok-icon i {
    color: #050505;
}

.discord-icon i {
    color: #5865f2;
}

.facebook-icon i {
    color: #1877f2;
}

.connect-card h3 {
    margin: 0 0 13px;
    color: #101010;
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.connect-card p {
    flex: 1;
    max-width: 220px;
    margin: 0 auto 24px;
    color: #191919;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;
}

/* Button inside card */
.connect-btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding: 0 18px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    background:
        linear-gradient(180deg, #ff1111, #c80000);
    box-shadow:
        0 9px 0 #990000,
        0 14px 22px rgba(210, 0, 0, 0.27);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.connect-btn i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.connect-card:hover .connect-btn {
    transform: translateY(-2px);
    background:
        linear-gradient(180deg, #ff2727, #bd0000);
    box-shadow:
        0 7px 0 #8d0000,
        0 16px 26px rgba(210, 0, 0, 0.34);
}

.connect-card:hover .connect-btn i {
    transform: translateX(4px);
}

/* ==================================================
   UPCOMING EVENTS SECTION
   ================================================== */

.upcoming-events-section {
    position: relative;
    overflow: hidden;

    padding: 110px 20px 120px;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.82),
            rgba(255, 255, 255, 0.82)
        ),
        url("../img/upcoming-events-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.upcoming-events-section * {
    box-sizing: border-box;
}

.events-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;

    width: 220px;
    height: 42px;

    background: linear-gradient(135deg, transparent 0%, #e00000 48%, #ff3a3a 100%);
    opacity: 0.9;

    transform: rotate(-18deg);
    filter: drop-shadow(0 16px 24px rgba(224, 0, 0, 0.18));
}

.events-bg-shape-one {
    top: 42px;
    right: -72px;
}

.events-bg-shape-two {
    left: -86px;
    bottom: 58px;
    transform: rotate(-18deg) scaleX(-1);
}

.upcoming-events-container {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1540px;

    margin: 0 auto;
}

.upcoming-events-shell {
    position: relative;
    overflow: hidden;

    width: 100%;

    padding: 68px 76px 74px;

    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 250, 0.94)),
        radial-gradient(circle at 50% 0%, rgba(224, 0, 0, 0.08), transparent 42%);

    border: 1px solid rgba(224, 0, 0, 0.12);
    border-radius: 42px;

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(224, 0, 0, 0.08);
}

.upcoming-events-shell::before,
.upcoming-events-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;

    width: 240px;
    height: 240px;

    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 0, 0, 0.10), transparent 68%);
}

.upcoming-events-shell::before {
    top: -90px;
    left: -70px;
}

.upcoming-events-shell::after {
    right: -90px;
    bottom: -90px;
}

/* Top heading row */
.events-top-row {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;

    margin-bottom: 46px;
}

.events-title-block {
    max-width: 760px;
}

.events-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;

    color: #111111;

    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.events-eyebrow span {
    display: inline-block;

    width: 46px;
    height: 2px;

    background: linear-gradient(90deg, transparent, #e00000, transparent);
    border-radius: 50px;
}

.events-eyebrow i {
    color: #e00000;
    font-size: 1rem;
}

.events-title-block h2 {
    margin: 0;

    color: #111111;

    font-size: clamp(2.1rem, 4vw, 4.6rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -2px;
}

.events-title-block h2 span {
    color: #e00000;
}

.events-title-block p {
    max-width: 680px;

    margin: 18px 0 0;

    color: #5c5c5c;

    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
}

/* View all button */
.events-view-all-btn {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 220px;
    min-height: 58px;

    padding: 0 28px;

    color: #e00000;
    background: rgba(255, 255, 255, 0.74);

    border: 2px solid rgba(224, 0, 0, 0.82);
    border-radius: 14px;

    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;

    box-shadow: 0 12px 26px rgba(224, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.events-view-all-btn:hover {
    color: #ffffff;
    background: #e00000;

    transform: translateY(-3px);

    box-shadow: 0 16px 30px rgba(224, 0, 0, 0.22);
}

/* Slider layout */
.events-slider-wrap {
    position: relative;
    z-index: 2;
}

.events-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;

    scroll-behavior: smooth;
}

/* Event card */
.event-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 356px;

    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.92));

    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 24px;

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.event-card:hover {
    transform: translateY(-8px);

    border-color: rgba(224, 0, 0, 0.35);

    box-shadow:
        0 28px 58px rgba(0, 0, 0, 0.12),
        0 12px 30px rgba(224, 0, 0, 0.13);
}

/* Red corner accents */
.event-card::before,
.event-card::after {
    content: "";
    position: absolute;
    z-index: 1;

    width: 68px;
    height: 68px;

    pointer-events: none;

    background: linear-gradient(135deg, transparent 46%, rgba(224, 0, 0, 0.88) 48%, rgba(255, 55, 55, 0.95) 100%);
}

.event-card::before {
    top: -30px;
    right: -30px;
    transform: rotate(0deg);
}

.event-card::after {
    right: -30px;
    bottom: -30px;
    transform: rotate(90deg);
}

.event-card-content {
    position: relative;
    z-index: 3;

    width: 64%;
    min-height: 356px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 34px 24px 26px;
}

.event-category {
    margin-bottom: 22px;

    color: #e00000;

    font-size: 0.88rem;
    font-weight: 950;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.event-card h3 {
    margin: 0;

    color: #111111;

    font-size: clamp(1.35rem, 1.7vw, 1.72rem);
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -0.6px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: auto;

    color: #151515;

    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
}

.event-date i {
    color: #e00000;
    font-size: 1.12rem;
}

.event-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 146px;
    min-height: 50px;

    margin-top: 24px;
    padding: 0 22px;

    color: #e00000;
    background: rgba(255, 255, 255, 0.85);

    border: 1.8px solid rgba(224, 0, 0, 0.86);
    border-radius: 10px;

    font-size: 0.96rem;
    font-weight: 900;
    text-decoration: none;

    box-shadow: 0 10px 18px rgba(224, 0, 0, 0.08);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.event-card-btn:hover {
    color: #ffffff;
    background: #e00000;

    transform: translateY(-2px);

    box-shadow: 0 14px 26px rgba(224, 0, 0, 0.22);
}

/* Event image */
.event-image-wrap {
    position: absolute;
    z-index: 2;

    right: 4px;
    bottom: 14px;

    width: 54%;
    height: 58%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    pointer-events: none;
}

.event-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.18));
}

.event-image-logo {
    right: 0;
    bottom: 18px;
    width: 55%;
    height: 56%;
}

.event-image-troop {
    right: -2px;
    bottom: 0;
    width: 52%;
    height: 70%;
}

.event-image-king {
    right: -8px;
    bottom: 0;
    width: 56%;
    height: 72%;
}

.event-image-chest {
    right: -6px;
    bottom: 10px;
    width: 58%;
    height: 58%;
}

/* Slider buttons */
.events-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: linear-gradient(135deg, #ff2727, #c90000);

    border: 0;
    border-radius: 50%;

    font-size: 1.2rem;

    cursor: pointer;

    box-shadow:
        0 16px 32px rgba(224, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);

    transform: translateY(-50%);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        box-shadow 0.25s ease;
}

.events-slider-btn:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 20px 38px rgba(224, 0, 0, 0.38);
}

.events-prev-btn {
    left: -30px;
}

.events-next-btn {
    right: -30px;
}

/* JavaScript hides these when there is no horizontal scroll */
.events-slider-btn[style*="display: none"] {
    pointer-events: none;
}

/* Dots */
.events-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 24px;
}

.events-dots.is-hidden {
    display: none;
}

.events-dot {
    width: 12px;
    height: 12px;

    padding: 0;

    background: rgba(17, 17, 17, 0.22);

    border: 0;
    border-radius: 50%;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.events-dot.active {
    width: 30px;
    border-radius: 999px;
    background: #e00000;
}

/* ============================= */
/* Featured Videos Section */
/* ============================= */

.featured-videos-section {
    position: relative;
    width: 100%;
    padding: clamp(82px, 7vw, 122px) 7%;
    overflow: hidden;
    isolation: isolate;

    background:
        /* linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.82)
        ), */
        url("../img/featured-videos-bg.png") center / cover no-repeat;
}
.featured-videos-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;

   background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.45),
            rgba(255, 255, 255, 0.35)
        ),
        radial-gradient(circle at 8% 72%, rgba(0, 0, 0, 0.08), transparent 24%),
        radial-gradient(circle at 92% 72%, rgba(224, 0, 0, 0.08), transparent 28%);

    pointer-events: none;
}

.featured-videos-glow {
    position: absolute;
    z-index: -2;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.featured-videos-glow-left {
    left: -170px;
    bottom: 8%;
    background: rgba(224, 0, 0, 0.10);
}

.featured-videos-glow-right {
    right: -180px;
    top: 18%;
    background: rgba(0, 0, 0, 0.08);
}

.featured-videos-container {
    position: relative;
    z-index: 2;
    width: min(1450px, 100%);
    margin: 0 auto;
}

/* Header */

.featured-videos-header {
    width: min(900px, 100%);
    margin: 0 auto clamp(34px, 4vw, 48px);
    text-align: center;
}

.featured-videos-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: #b50000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.featured-videos-eyebrow span {
    width: 88px;
    height: 2px;
    display: inline-block;
    flex: 0 0 auto;
    background: linear-gradient(90deg, transparent, #b50000, transparent);
}

.featured-videos-eyebrow i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: linear-gradient(135deg, #e00000, #850000);
    border: 2px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 10px 20px rgba(224, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.featured-videos-header h2 {
    margin: 0;

    color: #111111;
    font-size: clamp(40px, 5vw, 78px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 7px;
    text-transform: uppercase;

    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
    overflow-wrap: anywhere;
}

.featured-videos-header h2 span {
    color: #b50000;
}

.featured-videos-header p {
    width: min(760px, 100%);
    margin: 22px auto 0;

    color: #343434;
    font-size: 18px;
    line-height: 1.7;
}

.featured-videos-header p strong {
    color: #b50000;
}

/* Layout */

.featured-videos-layout {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

/* Main Video Card */

.featured-video-main {
    position: relative;
    min-width: 0;
    width: 100%;
    overflow: hidden;

    background: #111111;
    border-radius: 24px;
    border: 1px solid rgba(20, 20, 20, 0.18);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.featured-main-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 21 / 10;
    overflow: hidden;
    background: #151515;
}

.featured-main-media img,
.featured-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.featured-main-media::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.40)),
        radial-gradient(circle at 50% 50%, rgba(224, 0, 0, 0.16), transparent 35%);

    pointer-events: none;
}

.featured-video-main:hover .featured-main-media img,
.featured-video-small:hover .featured-small-thumb img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

/* Category */

.featured-category {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    width: fit-content;
    max-width: 100%;

    color: #ffffff;
    background: linear-gradient(135deg, #d90000, #7f0000);

    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 1.15;
    text-transform: uppercase;

    box-shadow:
        0 10px 18px rgba(140, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.featured-main-category {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 3;

    padding: 13px 20px;
}

.featured-small-category {
    padding: 8px 12px;

    color: #9d0000;
    background: rgba(224, 0, 0, 0.08);
    border-color: rgba(224, 0, 0, 0.16);
    box-shadow: none;

    font-size: 11px;
}

/* Play Buttons */

.featured-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;

    width: 104px;
    height: 104px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%),
        linear-gradient(135deg, #ef0000, #850000);

    border: 3px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;

    box-shadow:
        0 0 0 12px rgba(224, 0, 0, 0.20),
        0 0 34px rgba(224, 0, 0, 0.55),
        0 20px 35px rgba(0, 0, 0, 0.38);

    transform: translate(-50%, -50%);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.featured-play-button i {
    margin-left: 6px;
    font-size: 38px;
}

.featured-video-main:hover .featured-play-button {
    transform: translate(-50%, -50%) scale(1.07);
}

.featured-small-play {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(180, 0, 0, 0.92);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);

    opacity: 0;
    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.featured-video-small:hover .featured-small-play {
    opacity: 1;
    transform: translateY(0);
}

.featured-duration {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 4;

    padding: 7px 10px;

    color: #ffffff;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;
}

/* Main Content */

.featured-main-content {
    padding: 28px 30px 30px;

    color: #ffffff;
    background:
        radial-gradient(circle at 90% 20%, rgba(224, 0, 0, 0.18), transparent 24%),
        linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
}

.featured-main-text h3 {
    margin: 0 0 12px;

    color: #ffffff;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-main-text p {
    width: min(760px, 100%);
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.featured-main-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 26px;
}

.featured-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.featured-meta-row span,
.featured-small-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.featured-meta-row i,
.featured-small-meta i {
    color: #d90000;
}

.featured-watch-btn {
    min-width: 190px;
    min-height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: #ffffff;
    background: linear-gradient(135deg, #ef0000, #970000);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;

    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;

    box-shadow:
        0 10px 18px rgba(224, 0, 0, 0.28),
        inset 0 -3px 0 rgba(90, 0, 0, 0.65);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.featured-watch-btn:hover {
    transform: translateY(-3px);
}

/* Small Video Cards */

.featured-video-list {
    min-width: 0;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 22px;
}

.featured-video-small {
    position: relative;
    min-width: 0;
    width: 100%;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(185px, 42%) minmax(0, 1fr);
    align-items: stretch;

    min-height: 145px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 22px;

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.featured-video-small::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -24px;

    width: 72px;
    height: 72px;

    background: linear-gradient(135deg, transparent 0%, transparent 44%, #d90000 45%, #8b0000 100%);
    border-radius: 20px;

    pointer-events: none;
}

.featured-video-small:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 0, 0, 0.24);
    box-shadow:
        0 22px 42px rgba(0, 0, 0, 0.16),
        0 12px 22px rgba(224, 0, 0, 0.08);
}

.featured-small-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 145px;

    overflow: hidden;
    background: #151515;
}

.featured-small-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18)),
        radial-gradient(circle at 50% 50%, rgba(224, 0, 0, 0.10), transparent 45%);
    pointer-events: none;
}

.featured-small-content {
    min-width: 0;
    padding: 20px 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-small-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 14px;
}

.featured-card-menu {
    color: rgba(0, 0, 0, 0.42);
    font-size: 18px;
}

.featured-small-content h3 {
    margin: 0 0 16px;

    color: #111111;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.featured-small-content h3 a {
    transition: color 0.25s ease;
}

.featured-small-content h3 a:hover {
    color: #c40000;
}

.featured-small-meta {
    color: #4d4d4d;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   ABOUT ALYY PAGE
========================================================= */

.about-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #111111;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 38%, rgba(255,255,255,0.2) 70%),
        url("../img/about/about-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(205, 18, 26, 0.35), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(205, 18, 26, 0.12), transparent 28%);
    z-index: 2;
    pointer-events: none;
}

.about-hero-container {
    position: relative;
    z-index: 3;
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
    padding: 90px 0 70px;
}

.about-hero-content {
    max-width: 620px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-eyebrow i {
    color: #cf111b;
}

.about-hero-content h1 {
    margin: 0;
    color: #111111;
    font-size: clamp(3.6rem, 7vw, 7.8rem);
    line-height: 0.88;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -0.06em;
}

.about-hero-content h1 strong {
    display: block;
    color: #cf111b;
}

.about-hero-content h2 {
    margin: 28px 0 18px;
    color: #161616;
    font-size: clamp(1.05rem, 1.7vw, 1.45rem);
    font-weight: 850;
}

.about-hero-content h2 span {
    color: #cf111b;
}

.about-hero-content p {
    max-width: 560px;
    margin: 0;
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.about-social-card {
    min-width: 132px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.86);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-social-card i {
    color: #cf111b;
    font-size: 1.15rem;
}

.about-social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(207,17,27,0.35);
    box-shadow: 0 20px 45px rgba(207,17,27,0.16);
}

/* Hero Visual */

.about-hero-visual {
    position: relative;
    min-height: 600px;
}

.about-main-image-wrap {
    position: absolute;
    right: 0;
    bottom: -70px;
    width: min(620px, 82%);
    z-index: 3;
}

.about-main-image-wrap img {
    position: relative;
    z-index: 3;
    width: 100%;
    display: block;
    filter: drop-shadow(0 35px 50px rgba(0,0,0,0.32));
}

.about-red-paint {
    position: absolute;
    inset: -60px -70px 30px -60px;
    background:
        radial-gradient(circle at 70% 20%, rgba(255,255,255,0.18), transparent 16%),
        linear-gradient(135deg, #e11221, #850710);
    border-radius: 40% 0 0 50%;
    transform: rotate(-6deg);
    z-index: 1;
    box-shadow: 0 34px 80px rgba(207,17,27,0.35);
}

.about-red-paint::before,
.about-red-paint::after {
    content: "";
    position: absolute;
    background: #cf111b;
    border-radius: 999px;
    opacity: 0.9;
}

.about-red-paint::before {
    width: 180px;
    height: 22px;
    left: -70px;
    top: 70px;
    transform: rotate(-18deg);
}

.about-red-paint::after {
    width: 120px;
    height: 16px;
    right: 20px;
    bottom: 40px;
    transform: rotate(12deg);
}

.about-polaroid {
    position: absolute;
    left: 2%;
    top: 105px;
    width: min(300px, 40%);
    padding: 13px 13px 28px;
    border-radius: 10px;
    background: #ffffff;
    transform: rotate(-7deg);
    z-index: 5;
    box-shadow: 0 28px 60px rgba(0,0,0,0.24);
}

.about-polaroid img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    border-radius: 7px;
    display: block;
}

.about-polaroid span {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    color: #cf111b;
    font-family: cursive;
    font-size: 1.5rem;
    font-weight: 800;
    white-space: nowrap;
}

.about-logo-mark {
    position: absolute;
    top: 70px;
    right: 30px;
    width: 115px;
    height: 115px;
    z-index: 6;
    display: grid;
    place-items: center;
}

.about-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 12px 25px rgba(0,0,0,0.3));
}

/* =========================
   STATS
========================= */

.about-stats-section {
    position: relative;
    z-index: 4;
    margin-top: -42px;
    padding: 0 0 65px;
}

.about-stats-container {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(18,18,18,0.98), rgba(10,10,10,0.96));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.24);
}

.about-stat-card {
    min-height: 125px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.03);
}

.about-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #cf111b, #7e070d);
    color: #ffffff;
    font-size: 1.55rem;
    flex: 0 0 auto;
}

.about-stat-card h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: clamp(1.45rem, 2vw, 2.2rem);
    font-weight: 950;
    line-height: 1;
}

.about-stat-card p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.35;
}

/* =========================
   SHARED HEADINGS
========================= */

.about-section-heading {
    margin-bottom: 34px;
}

.about-section-heading.center-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.about-section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 11px;
    color: #cf111b;
    font-size: 0.85rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-section-heading span::after {
    content: "";
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #cf111b, transparent);
}

.center-heading span::before {
    content: "";
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cf111b);
}

.about-section-heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.about-section-heading p {
    margin: 16px 0 0;
    color: #555555;
    font-size: 1rem;
    line-height: 1.75;
}

/* =========================
   WHAT I DO
========================= */

.about-work-section {
    padding: 20px 0 80px;
}

.about-work-grid {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-work-card {
    position: relative;
    min-height: 245px;
    padding: 32px 26px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-work-card::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 0;
    width: 46px;
    height: 4px;
    border-radius: 999px;
    background: #cf111b;
}

.about-work-card i {
    margin-bottom: 24px;
    color: #cf111b;
    font-size: 2.35rem;
}

.about-work-card h3 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 1.18rem;
    font-weight: 900;
}

.about-work-card p {
    margin: 0;
    color: #555555;
    font-size: 0.96rem;
    line-height: 1.7;
}

.about-work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(207,17,27,0.24);
    box-shadow: 0 25px 65px rgba(207,17,27,0.12);
}

/* =========================
   MY STORY
========================= */

.about-story-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at 18% 35%, rgba(207,17,27,0.16), transparent 25%),
        linear-gradient(135deg, #151515, #070707);
}

.about-story-container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.about-story-image {
    position: relative;
    min-height: 480px;
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(207,17,27,0.95), rgba(30,30,30,0.96));
    box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}

.about-story-image::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
}

.about-story-image img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(430px, 92%);
    display: block;
    z-index: 3;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.35));
}

.about-story-content {
    padding: 20px 0;
}

.about-story-content .about-section-heading h2 {
    color: #ffffff;
}

.about-story-content p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.85;
}

.about-signature {
    margin-top: 22px;
    color: #ffffff;
    font-family: cursive;
    font-size: 1.7rem;
    font-weight: 800;
}

.about-signature span {
    color: #cf111b;
}

/* =========================
   JOURNEY
========================= */

.about-journey-section {
    padding: 90px 0 80px;
    background: #ffffff;
}

.about-journey-grid {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-journey-card {
    position: relative;
    padding: 32px 26px;
    min-height: 260px;
    border-radius: 20px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(207,17,27,0.55), rgba(0,0,0,0.08)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.about-journey-card span {
    display: inline-flex;
    margin-bottom: 22px;
    color: rgba(207,17,27,0.22);
    font-size: 3rem;
    line-height: 1;
    font-weight: 950;
}

.about-journey-card h3 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 1.2rem;
    font-weight: 950;
    line-height: 1.25;
}

.about-journey-card p {
    margin: 0;
    color: #555555;
    font-size: 0.96rem;
    line-height: 1.7;
}

/* =========================
   VIDEO SECTION
========================= */

.about-video-section {
    padding: 80px 0 105px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.about-video-grid {
    width: min(960px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-video-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0,0,0,0.09);
    border: 1px solid rgba(0,0,0,0.08);
}

.about-video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111111;
}

.about-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.about-video-card:hover .about-video-thumb img {
    transform: scale(1.06);
}

.about-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 1.15rem;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.about-play-btn:hover {
    transform: scale(1.08);
    background: #cf111b;
}

.about-video-thumb span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
}

.about-video-info {
    padding: 22px;
}

.about-video-info h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 950;
}

.about-video-info p {
    margin: 0;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-youtube-btn-wrap {
    margin-top: 34px;
    text-align: center;
}

.about-youtube-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #cf111b, #92070e);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(207,17,27,0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-youtube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 45px rgba(207,17,27,0.34);
}

/* =========================================================
   TOURNAMENT PAGE REDESIGN
   Page: main/tournament.php
   Safe scope: .tournament-page only
========================================================= */

.tournament-page {
    --tour-red: #e00000;
    --tour-red-dark: #980000;
    --tour-black: #090909;
    --tour-text: #171717;
    --tour-muted: #555555;
    --tour-border: rgba(0, 0, 0, 0.12);
    --tour-card: rgba(255, 255, 255, 0.94);
    --tour-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);

    width: 100%;
    overflow: hidden;
    color: var(--tour-text);
    background: #ffffff;
}

.tournament-page * {
    box-sizing: border-box;
}

.tournament-section-container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

/* =========================================================
   HERO SECTION
========================================================= */

.tournament-hero-section {
    position: relative;
    min-height: calc(100svh - 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 165px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.86) 36%,
            rgba(255, 255, 255, 0.88) 64%,
            rgba(255, 255, 255, 0.18) 100%
        ),
        url("../img/hero-bg.png") center / cover no-repeat;
}

.tournament-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 13% 58%, rgba(0, 0, 0, 0.38), transparent 33%),
        radial-gradient(circle at 87% 58%, rgba(0, 0, 0, 0.36), transparent 34%),
        linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0.2) 58%, rgba(0,0,0,0.25) 100%);
}

.tournament-hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 210px;
    z-index: -2;
    background:
        linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.35)),
        linear-gradient(to bottom, transparent 15%, #ffffff 100%);
}

.tournament-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.72), transparent 38%),
        linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    pointer-events: none;
}

.tournament-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-top: -52px;
}

.tournament-logo-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: var(--tour-red);
    font-size: 31px;
    border-radius: 20px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, var(--tour-red), rgba(0, 0, 0, 0.28)) border-box;
    border: 2px solid transparent;
    box-shadow:
        0 12px 28px rgba(224, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.small-logo-mark {
    width: 58px;
    height: 58px;
    font-size: 24px;
    border-radius: 17px;
    margin-bottom: 14px;
}

.tournament-title-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.tournament-title-lines span {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tour-red), transparent);
    position: relative;
}

.tournament-title-lines span:first-child::after,
.tournament-title-lines span:last-child::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--tour-red);
    transform: translateY(-50%) rotate(45deg);
}

.tournament-title-lines span:first-child::after {
    right: -3px;
}

.tournament-title-lines span:last-child::before {
    left: -3px;
}

.tournament-title-lines p {
    margin: 0;
    color: #171717;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.tournament-hero-content h1 {
    margin: 0;
    color: #0a0a0a;
    font-size: clamp(4rem, 9vw, 8.2rem);
    line-height: 0.82;
    font-weight: 1000;
    letter-spacing: -4px;
    text-transform: uppercase;
    text-shadow: 0 5px 0 rgba(0,0,0,0.08);
}

.tournament-hero-content h1 strong {
    display: block;
    margin-top: 18px;
    color: var(--tour-red);
    font-size: 0.78em;
    letter-spacing: -3px;
    text-shadow:
        0 3px 0 #760000,
        0 15px 22px rgba(224, 0, 0, 0.25);
}

.tournament-hero-subtitle {
    max-width: 520px;
    margin: 28px auto 0;
    color: #202020;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.45;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tournament-hero-info {
    position: absolute;
    left: 50%;
    bottom: 56px;
    z-index: 3;
    width: min(1120px, calc(100% - 70px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.tournament-hero-info-card {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    text-align: left;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    color: var(--tour-red);
    font-size: 27px;
}

.tournament-hero-info-card span {
    display: block;
    margin-bottom: 7px;
    color: #555555;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tournament-hero-info-card strong {
    display: block;
    color: #111111;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 1000;
    text-transform: uppercase;
}

.tournament-scroll-down {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 5;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 22px;
    opacity: 0.8;
    animation: tournamentBounce 1.5s infinite ease-in-out;
}

@keyframes tournamentBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* =========================================================
   SHARED SECTION TITLES
========================================================= */

.tournament-section-title h2 {
    margin: 0;
    color: #101010;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 0.95;
    font-weight: 1000;
    font-style: italic;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.tournament-section-title h2 span {
    display: block;
    color: var(--tour-red);
}

.center-title {
    text-align: center;
}

.center-title h2 span {
    display: inline;
}

.tournament-red-line {
    width: 190px;
    height: 2px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--tour-red), transparent);
    position: relative;
}

.center-line {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--tour-red), transparent);
}

.tournament-red-line span {
    position: absolute;
    top: 50%;
    left: 62%;
    width: 9px;
    height: 9px;
    background: var(--tour-red);
    border: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 0 1px rgba(224, 0, 0, 0.35);
}

.small-crown {
    margin: 0 auto 10px;
    color: var(--tour-red);
    font-size: 28px;
}

/* =========================================================
   OVERVIEW SECTION
========================================================= */

.tournament-overview-section {
    position: relative;
    padding: 110px 0 105px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72), rgba(255,255,255,0.94)),
        url("../img/upcoming-events-bg.png") center / cover no-repeat;
}

.tournament-overview-section::after,
.tournament-dates-section::after,
.prediction-arena-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.tournament-section-bg-symbol {
    position: absolute;
    left: 12%;
    top: 35%;
    color: rgba(0, 0, 0, 0.045);
    font-size: 300px;
    transform: rotate(-12deg);
    pointer-events: none;
}

.tournament-overview-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 76px;
}

.tournament-overview-text p {
    max-width: 490px;
    margin: 34px 0 0;
    color: #222222;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 700;
}

.overview-legacy-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    color: #151515;
    font-size: 1rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.overview-legacy-note i {
    color: var(--tour-red);
    font-size: 28px;
}

.tournament-overview-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.tournament-feature-card {
    min-height: 290px;
    padding: 34px 28px 30px;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.09),
        inset 0 1px 0 rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tournament-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.feature-icon-circle {
    width: 105px;
    height: 105px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: var(--tour-red);
    font-size: 48px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(224,0,0,0.13), rgba(224,0,0,0.03) 64%, transparent 65%),
        #ffffff;
    box-shadow:
        inset 0 0 0 1px rgba(224,0,0,0.12),
        0 10px 24px rgba(0,0,0,0.08);
}

.gold-icon {
    color: #d99500;
}

.tournament-feature-card h3 {
    margin: 0 0 18px;
    color: #111111;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 1000;
    text-transform: uppercase;
}

.tournament-feature-card p {
    max-width: 250px;
    margin: 0 auto;
    color: #333333;
    font-size: 0.94rem;
    line-height: 1.75;
    font-weight: 600;
}

/* =========================================================
   IMPORTANT DATES
========================================================= */

.tournament-dates-section {
    position: relative;
    padding: 90px 0 92px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76), rgba(255,255,255,0.92)),
        url("../img/hero-bg.png") center / cover no-repeat;
}

.tournament-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.tournament-timeline::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 65px;
    right: 65px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(224,0,0,0.35), transparent);
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-step::before {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
    background: var(--tour-red);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-dot {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    color: #111111;
    font-size: 25px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow:
        0 12px 26px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.timeline-step.active .timeline-dot {
    color: #ffffff;
    background: linear-gradient(135deg, #ff1515, #a90000);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(224,0,0,0.35);
}

.timeline-step h3 {
    margin: 0 0 9px;
    color: #111111;
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 1000;
    text-transform: uppercase;
}

.timeline-step.active h3 {
    color: var(--tour-red);
}

.timeline-step h4 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 1000;
    text-transform: uppercase;
}

.timeline-step p {
    max-width: 140px;
    margin: 0 auto;
    color: #333333;
    font-size: 0.8rem;
    line-height: 1.55;
    font-weight: 600;
}

/* =========================================================
   PREDICTION ARENA
========================================================= */

.prediction-arena-section {
    position: relative;

    /*
        Makes prediction section full-screen style,
        similar to the tournament hero section.
    */
    min-height: calc(100svh - 92px);

    display: flex;
    align-items: center;

    padding: 130px 0;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.94),
            rgba(255,255,255,0.62),
            rgba(255,255,255,0.88)
        ),
        url("../img/upcoming-events-bg.png") center / cover no-repeat;
}
.prediction-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;
    gap: 60px;
}

.prediction-content p {
    max-width: 440px;
    margin: 34px 0 0;
    color: #222222;
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 700;
}

.prediction-list {
    display: grid;
    gap: 22px;
    margin: 36px 0 34px;
}

.prediction-list-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 17px;
}

.prediction-list-item > i {
    color: var(--tour-red);
    font-size: 34px;
}

.prediction-list-item h3 {
    margin: 0 0 4px;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.prediction-list-item p {
    margin: 0;
    color: #444444;
    font-size: 0.83rem;
    line-height: 1.45;
    font-weight: 600;
}

.tournament-main-btn,
.tournament-secondary-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 34px;
    border-radius: 9px;
    font-size: 0.92rem;
    font-weight: 1000;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tournament-main-btn {
    color: #ffffff;
    background: linear-gradient(180deg, #ff1717, #c90000 62%, #980000);
    box-shadow:
        0 13px 26px rgba(224, 0, 0, 0.31),
        inset 0 1px 0 rgba(255,255,255,0.36);
}

.tournament-main-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 34px rgba(224,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.36);
}

.tournament-secondary-btn {
    color: #111111;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.18);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.tournament-secondary-btn i {
    color: var(--tour-red);
}

.tournament-secondary-btn:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

/* CSS orb design so you do not need extra images */
.prediction-orb-wrap {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.prediction-orb {
    position: relative;
    width: min(390px, 42vw);
    height: min(390px, 42vw);
    min-width: 260px;
    min-height: 260px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 25%, rgba(255,255,255,0.95), transparent 13%),
        radial-gradient(circle at 62% 32%, rgba(255,255,255,0.7), transparent 11%),
        radial-gradient(circle at 45% 42%, #9c75ff, #5b1fe3 48%, #2a0e68 100%);
    box-shadow:
        0 0 60px rgba(111, 54, 255, 0.58),
        inset 0 0 45px rgba(255,255,255,0.24),
        inset 0 -45px 70px rgba(0,0,0,0.34);
    overflow: hidden;
}

.prediction-orb::before {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.24);
}

.prediction-orb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 47%, rgba(255,255,255,0.18) 48%, transparent 51%),
        linear-gradient(0deg, transparent 47%, rgba(255,255,255,0.15) 48%, transparent 51%);
    opacity: 0.65;
}

.orb-line {
    position: absolute;
    height: 3px;
    background: rgba(157, 225, 255, 0.85);
    box-shadow: 0 0 14px rgba(135, 220, 255, 0.85);
    border-radius: 20px;
    z-index: 2;
}

.line-one {
    width: 95px;
    left: 20%;
    top: 32%;
}

.line-two {
    width: 130px;
    right: 16%;
    top: 52%;
}

.line-three {
    width: 105px;
    left: 24%;
    top: 68%;
}

.orb-glow {
    position: absolute;
    inset: 35%;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    filter: blur(18px);
}

.prediction-base {
    position: absolute;
    bottom: 0;
    width: min(390px, 44vw);
    height: 110px;
    border-radius: 22px 22px 10px 10px;
    background:
        linear-gradient(180deg, #2a2a2a, #101010),
        radial-gradient(circle, rgba(224,0,0,0.3), transparent);
    box-shadow: 0 24px 40px rgba(0,0,0,0.25);
    z-index: -1;
}

.prediction-base::before {
    content: "";
    position: absolute;
    inset: 14px 20px;
    border-radius: 14px;
    border: 1px solid rgba(224,0,0,0.34);
}

.prediction-shield {
    position: absolute;
    left: 10%;
    bottom: 24px;
    width: 145px;
    height: 170px;
    display: grid;
    place-items: center;
    color: var(--tour-red);
    font-size: 70px;
    border-radius: 18px;
    background: linear-gradient(145deg, #7b4a24, #2b1b12);
    border: 4px solid #c9944f;
    transform: rotate(-12deg);
    box-shadow: 0 18px 30px rgba(0,0,0,0.25);
}

/* =========================================================
   FINAL CTA
========================================================= */

.tournament-final-cta {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 95px 24px 110px;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.92), rgba(255,255,255,0.5)),
        url("../img/hero-bg.png") center / cover no-repeat;
}

.tournament-final-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.85), transparent 40%),
        linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.62));
}

.final-side {
    position: absolute;
    bottom: 0;
    width: 36%;
    max-width: 430px;
    height: 76%;
    opacity: 0.28;
    background:
        radial-gradient(circle at bottom, rgba(224,0,0,0.35), transparent 52%);
    pointer-events: none;
}

.final-side-left {
    left: 0;
}

.final-side-right {
    right: 0;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
}

.final-cta-content .tournament-section-title h2 {
    font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.final-cta-content p {
    max-width: 520px;
    margin: 22px auto 30px;
    color: #222222;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 700;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================================================
   ALYYON COMING SOON PAGE
   This block is intentionally scoped to .coming-soon-page
   so it does not change any previous page, navbar or footer.
   ========================================================= */

.coming-soon-page {
    --coming-red: #e00000;
    --coming-red-bright: #ff1c1c;
    --coming-red-dark: #a80000;
    --coming-red-deep: #760000;
    --coming-black: #111111;
    --coming-text: #1b1b1b;
    --coming-muted: #66666b;
    --coming-border: rgba(20, 20, 20, 0.14);
    --coming-white: #ffffff;

    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background: #f7f7f8;
}

.coming-soon-page,
.coming-soon-page * {
    box-sizing: border-box;
}

.coming-soon-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(720px, 88svh, 980px);
    padding: clamp(52px, 6vw, 92px) 24px;
    overflow: hidden;
}

/* Optional section background image. The gradients remain visible if the image is missing. */
.coming-soon-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.92) 48%,
            rgba(255, 255, 255, 0.76) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20),
            rgba(245, 245, 246, 0.82)
        ),
        url("../img/coming-soon-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.coming-soon-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(18px);
}

.coming-soon-glow-one {
    top: 4%;
    left: -180px;
    width: 430px;
    height: 430px;
    background: rgba(224, 0, 0, 0.08);
}

.coming-soon-glow-two {
    right: -190px;
    bottom: -160px;
    width: 500px;
    height: 500px;
    background: rgba(224, 0, 0, 0.09);
}

.coming-soon-container {
    position: relative;
    z-index: 1;
    width: min(100%, 1080px);
    margin: 0 auto;
}

.coming-soon-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding:
        clamp(42px, 5vw, 68px)
        clamp(24px, 6vw, 78px)
        clamp(32px, 5vw, 54px);
    text-align: center;
    border: 1px solid var(--coming-border);
    border-radius: 34px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.88)
    );
    box-shadow:
        0 28px 70px rgba(14, 14, 18, 0.11),
        0 8px 25px rgba(14, 14, 18, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.coming-soon-card::before,
.coming-soon-card::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    pointer-events: none;
}

.coming-soon-card::before {
    top: 0;
    left: 0;
    border-top: 4px solid var(--coming-red);
    border-left: 4px solid var(--coming-red);
    border-top-left-radius: 32px;
    clip-path: polygon(0 0, 100% 0, 100% 8px, 24px 8px, 8px 24px, 8px 100%, 0 100%);
}

.coming-soon-card::after {
    right: 0;
    bottom: 0;
    border-right: 4px solid var(--coming-red);
    border-bottom: 4px solid var(--coming-red);
    border-bottom-right-radius: 32px;
    clip-path: polygon(calc(100% - 8px) 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 8px), calc(100% - 24px) calc(100% - 8px), calc(100% - 8px) calc(100% - 24px));
}

.coming-soon-top-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    width: min(54%, 470px);
    transform: translateX(-50%);
}

.coming-soon-top-decoration span {
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 0, 0, 0.48));
}

.coming-soon-top-decoration span:last-child {
    background: linear-gradient(90deg, rgba(224, 0, 0, 0.48), transparent);
}

.coming-soon-diamond {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0 10px;
    border: 4px solid #ffffff;
    background: var(--coming-red);
    box-shadow:
        0 0 0 1px rgba(15, 15, 18, 0.12),
        0 4px 10px rgba(224, 0, 0, 0.24);
    transform: translateY(-9px) rotate(45deg);
}

.coming-soon-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

/* More specific than the global img rule, preventing the logo from becoming full-size. */
.coming-soon-page img.coming-soon-logo {
    display: block;
    flex: 0 0 62px;
    width: 62px;
    min-width: 62px;
    max-width: 62px;
    height: 62px;
    object-fit: contain;
}

.coming-soon-brand-name {
    color: var(--coming-black);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
}

.coming-soon-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.coming-soon-icon-shield {
    position: relative;
    display: grid;
    place-items: center;
    width: 82px;
    height: 88px;
    color: var(--coming-red);
    font-size: 1.8rem;
    border: 1px solid rgba(20, 20, 24, 0.16);
    border-radius: 20px 20px 32px 32px;
    background: linear-gradient(145deg, #ffffff, #e8e8ea);
    box-shadow:
        0 14px 30px rgba(15, 15, 18, 0.13),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    clip-path: polygon(50% 0%, 94% 15%, 88% 70%, 50% 100%, 12% 70%, 6% 15%);
}

.coming-soon-icon-shield::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(224, 0, 0, 0.22);
    clip-path: polygon(50% 0%, 94% 15%, 88% 70%, 50% 100%, 12% 70%, 6% 15%);
}

.coming-soon-icon-shield i {
    position: relative;
    z-index: 1;
}

.coming-soon-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    color: var(--coming-red);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.coming-soon-label-line {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coming-red));
}

.coming-soon-label-line:last-child {
    background: linear-gradient(90deg, var(--coming-red), transparent);
}

.coming-soon-title {
    margin: 0;
    color: var(--coming-black);
    font-size: clamp(3.3rem, 9vw, 7.2rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-shadow:
        0 3px 0 rgba(255, 255, 255, 0.9),
        0 10px 25px rgba(15, 15, 18, 0.09);
}

.coming-soon-title .coming-soon-title-accent {
    color: var(--coming-red);
}

.coming-soon-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 510px);
    margin: 24px auto 20px;
}

.coming-soon-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 0, 0, 0.65));
}

.coming-soon-divider span:last-child {
    background: linear-gradient(90deg, rgba(224, 0, 0, 0.65), transparent);
}

.coming-soon-divider div {
    width: 10px;
    height: 10px;
    margin: 0 13px;
    border: 2px solid var(--coming-red);
    background: #ffffff;
    transform: rotate(45deg);
}

.coming-soon-description {
    width: min(100%, 670px);
    margin: 0 auto;
    color: var(--coming-text);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    line-height: 1.75;
}

.coming-soon-secondary-text {
    margin: 8px 0 0;
    color: var(--coming-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.coming-soon-progress-box {
    width: min(100%, 610px);
    margin: 28px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(20, 20, 24, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 10px 26px rgba(15, 15, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.coming-soon-progress-information {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    color: var(--coming-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.coming-soon-progress-information strong {
    color: var(--coming-red);
    font-size: 1rem;
    font-weight: 900;
}

.coming-soon-progress-track {
    position: relative;
    width: 100%;
    height: 13px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 24, 0.09);
    border-radius: 999px;
    background: linear-gradient(180deg, #dedee1, #f2f2f3);
    box-shadow: inset 0 2px 5px rgba(15, 15, 18, 0.11);
}

.coming-soon-progress-fill {
    position: relative;
    width: var(--coming-progress, 60%);
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--coming-red-deep),
        var(--coming-red),
        #ff3942
    );
    box-shadow: 0 0 14px rgba(224, 0, 0, 0.35);
    transition: width 0.8s ease;
}

.coming-soon-progress-fill span {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, 0.38) 50%,
        transparent 62%,
        transparent 100%
    );
    animation: comingSoonProgressShine 2.4s linear infinite;
}

@keyframes comingSoonProgressShine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.coming-soon-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.coming-soon-primary-button,
.coming-soon-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.coming-soon-primary-button {
    gap: 18px;
    min-width: 250px;
    padding: 7px 18px 7px 8px;
    color: #ffffff;
    border: 1px solid #890007;
    background: linear-gradient(180deg, #ff1924 0%, #dc0711 48%, #a80009 100%);
    box-shadow:
        0 6px 0 #750006,
        0 13px 24px rgba(224, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.coming-soon-button-icon {
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    background: rgba(80, 0, 4, 0.24);
}

.coming-soon-primary-button > i:last-child {
    margin-left: auto;
}

.coming-soon-primary-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #750006,
        0 17px 30px rgba(224, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.coming-soon-primary-button:active {
    transform: translateY(3px);
    box-shadow:
        0 3px 0 #750006,
        0 8px 17px rgba(224, 0, 0, 0.22);
}

.coming-soon-secondary-button {
    gap: 11px;
    min-width: 185px;
    padding: 0 22px;
    color: var(--coming-text);
    border: 1px solid rgba(20, 20, 24, 0.14);
    background: rgba(255, 255, 255, 0.90);
    box-shadow:
        0 9px 22px rgba(15, 15, 18, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.coming-soon-secondary-button i {
    color: var(--coming-red);
}

.coming-soon-secondary-button:hover {
    color: var(--coming-red);
    border-color: rgba(224, 0, 0, 0.38);
    background: #ffffff;
    transform: translateY(-3px);
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 850px);
    margin: 36px auto 0;
}

.coming-soon-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(20, 20, 24, 0.09);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow:
        0 8px 20px rgba(15, 15, 18, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.coming-soon-feature-icon {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: var(--coming-red);
    font-size: 1.05rem;
    border: 1px solid rgba(224, 0, 0, 0.20);
    border-radius: 12px;
    background: rgba(224, 0, 0, 0.06);
}

.coming-soon-feature > div:last-child {
    min-width: 0;
}

.coming-soon-feature strong,
.coming-soon-feature span {
    display: block;
}

.coming-soon-feature strong {
    margin-bottom: 3px;
    color: var(--coming-text);
    font-size: 0.83rem;
    font-weight: 900;
    text-transform: uppercase;
}

.coming-soon-feature span {
    overflow: hidden;
    color: var(--coming-muted);
    font-size: 0.78rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.coming-soon-bottom-message {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
    color: var(--coming-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.coming-soon-bottom-message i {
    color: var(--coming-red);
    animation: comingSoonHeart 1.8s ease-in-out infinite;
}

@keyframes comingSoonHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.16); }
}

.coming-soon-primary-button:focus-visible,
.coming-soon-secondary-button:focus-visible {
    outline: 3px solid rgba(224, 0, 0, 0.28);
    outline-offset: 5px;
}
