.hero-section {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(8, 18, 35, 0.55), rgba(8, 18, 35, 0.65)),
        url('../images/backgrounds/landing-stadium.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 140px 0 80px;
}




.showcase-section {
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 72, 0, 0.10), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(0, 123, 255, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(9, 14, 24, 0.15), rgba(9, 14, 24, 0.55));
}

.showcase-section .container {
    width: min(1280px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-stage {
    position: relative;
}

.showcase-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.glow-left {
    top: 60px;
    left: -120px;
    background: #ff3d00;
    animation: glowDriftOne 10s ease-in-out infinite alternate;
}

.glow-right {
    bottom: 30px;
    right: -100px;
    background: #0d6efd;
    animation: glowDriftTwo 12s ease-in-out infinite alternate;
}

.characters-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    margin-bottom: -55px;
    perspective: 1200px;
}

.characters-image {
    width: min(100%, 1080px);
    display: block;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
    transform-origin: center bottom;
    animation:
        heroReveal 1.35s cubic-bezier(.18, .89, .32, 1.28) both,
        heroFloat 6.5s ease-in-out 1.5s infinite;
}

.categories-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.category-card {
    position: relative;
    display: block;
    min-height: 275px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #111827;
    transform-style: preserve-3d;
    transition:
        transform 0.55s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.55s cubic-bezier(.2, .8, .2, 1),
        border-color 0.45s ease;
    opacity: 0;
    animation: cardRiseMask 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.category-card:nth-child(1) {
    animation-delay: 0.30s;
}

.category-card:nth-child(2) {
    animation-delay: 0.48s;
}

.category-card:nth-child(3) {
    animation-delay: 0.66s;
}

.category-card:nth-child(4) {
    animation-delay: 0.84s;
}

.category-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.9s cubic-bezier(.2, .8, .2, 1), filter 0.6s ease;
    filter: saturate(1) contrast(1.04);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 8, 16, 0.88) 0%, rgba(4, 8, 16, 0.10) 55%, rgba(4, 8, 16, 0.02) 100%);
    z-index: 1;
}

.category-shine {
    position: absolute;
    inset: -20%;
    z-index: 2;
    background: linear-gradient(115deg,
            transparent 15%,
            rgba(255, 255, 255, 0.00) 35%,
            rgba(255, 255, 255, 0.18) 48%,
            rgba(255, 255, 255, 0.03) 52%,
            transparent 65%);
    transform: translateX(-130%) skewX(-18deg);
    transition: transform 0.95s ease;
    pointer-events: none;
}

.category-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 18px 16px;
}

.category-content h3 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
    transform: translateY(0);
    transition: transform 0.45s ease, letter-spacing 0.35s ease;
}

.sports-card .category-content {
    background: linear-gradient(180deg, rgba(174, 9, 20, 0.05), #b80d17);
}

.gym-card .category-content {
    background: linear-gradient(180deg, rgba(9, 68, 174, 0.05), #0e4e9d);
}

.mma-card .category-content {
    background: linear-gradient(180deg, rgba(174, 9, 20, 0.05), #b80d17);
}

.bikers-card .category-content {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.05), #111111);
}

/* Premium hover */
.category-card:hover {
    transform: translateY(-12px) rotateX(6deg) rotateY(-4deg);
    box-shadow:
        0 28px 50px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 35px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.category-card:hover .category-image {
    transform: scale(1.11);
    filter: saturate(1.08) contrast(1.08);
}

.category-card:hover .category-shine {
    transform: translateX(135%) skewX(-18deg);
}

.category-card:hover .category-content h3 {
    transform: translateY(-2px);
    letter-spacing: 1.8px;
}

/* Different hover accent per card */
.sports-card:hover {
    box-shadow:
        0 28px 50px rgba(0, 0, 0, .38),
        0 0 35px rgba(230, 30, 45, 0.28);
}

.gym-card:hover {
    box-shadow:
        0 28px 50px rgba(0, 0, 0, .38),
        0 0 35px rgba(25, 110, 220, 0.28);
}

.mma-card:hover {
    box-shadow:
        0 28px 50px rgba(0, 0, 0, .38),
        0 0 35px rgba(230, 30, 45, 0.28);
}

.bikers-card:hover {
    box-shadow:
        0 28px 50px rgba(0, 0, 0, .38),
        0 0 35px rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 1199px) {
    .characters-wrap {
        margin-bottom: -35px;
    }

    .categories-grid {
        gap: 16px;
    }

    .category-card {
        min-height: 245px;
    }

    .category-content h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 991px) {
    .showcase-section {
        padding: 30px 0 60px;
    }

    .characters-wrap {
        margin-bottom: 22px;
    }

    .characters-image {
        width: 100%;
        max-width: 760px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .category-card {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .showcase-section {
        padding: 20px 0 50px;
    }

    .characters-wrap {
        margin-bottom: 18px;
    }

    .characters-image {
        max-width: 100%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        min-height: 240px;
        border-radius: 16px;
    }

    .category-content {
        padding: 16px 14px;
    }

    .category-content h3 {
        font-size: 1.2rem;
    }

    .category-card:hover {
        transform: translateY(-6px);
    }
}

/* Non-common animations */
@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(90px) rotateX(28deg) scale(.82);
        filter: blur(10px) drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }

    55% {
        opacity: 1;
        transform: translateY(-10px) rotateX(-6deg) scale(1.03);
        filter: blur(0) drop-shadow(0 20px 24px rgba(0, 0, 0, 0.25));
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
    }
}


@keyframes cardRiseMask {
    0% {
        opacity: 0;
        transform: translateY(70px) scale(.9) rotateX(18deg);
        clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
        filter: blur(8px);
    }

    55% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02) rotateX(-4deg);
        clip-path: polygon(0 100%, 100% 100%, 100% 25%, 0 0);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
        filter: blur(0);
    }
}

@keyframes glowDriftOne {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -20px) scale(1.08);
    }
}

@keyframes glowDriftTwo {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 30px) scale(1.12);
    }
}



.about-company-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(225, 29, 46, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0, 102, 204, 0.12), transparent 30%),
        linear-gradient(180deg, #09111d 0%, #0f1a2a 100%);
    overflow: hidden;
}

.about-company-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.about-shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(225, 29, 46, 0.12);
    top: -80px;
    left: -70px;
}

.about-shape-2 {
    width: 280px;
    height: 280px;
    background: rgba(0, 123, 255, 0.10);
    bottom: -60px;
    right: -40px;
}

.about-company-section .container {
    position: relative;
    z-index: 2;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-company-content {
    color: #fff;
}

.about-company-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ff4757;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    border-radius: 999px;
}

.about-company-content h2 {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.about-company-content h2 span {
    color: #ff4757;
}

.about-company-lead {
    font-size: 19px;
    line-height: 1.8;
    color: #e8edf5;
    margin-bottom: 18px;
}

.about-company-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #bfc9d8;
}

.about-company-content>p:last-of-type {
    margin-bottom: 28px;
}

.about-company-features {
    display: grid;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 32px;
}

.about-feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px) rotate(-0.4deg);
    border-color: rgba(225, 29, 46, 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.about-feature-icon {
    min-width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #ef233c, #b10017);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(177, 0, 23, 0.28);
}

.about-feature-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 800;
}

.about-feature-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #c6d0dd;
}

.about-company-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #ef233c, #b10017);
    box-shadow: 0 10px 25px rgba(177, 0, 23, 0.28);
}

.about-btn-primary:hover {
    box-shadow: 0 16px 34px rgba(177, 0, 23, 0.36);
}

.about-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.about-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.about-company-visual {
    position: relative;
}

.about-visual-wrap {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.about-main-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.30);
}

.about-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 18, 35, 0.28), rgba(8, 18, 35, 0.05));
    pointer-events: none;
}

.about-main-image img {
    display: block;
    width: 100%;
    height: 640px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-main-image:hover img {
    transform: scale(1.06);
}

.about-floating-card {
    position: absolute;
    max-width: 250px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(10, 18, 33, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    animation: driftFloat 5s ease-in-out infinite;
}

.about-floating-card h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.about-floating-card p {
    font-size: 13px;
    line-height: 1.65;
    color: #d5dce7;
}

.about-card-top {
    top: 28px;
    left: -45px;
    animation-delay: 0s;
}

.about-card-bottom {
    bottom: 32px;
    right: -38px;
    animation-delay: 1.1s;
}


/* Responsive */
@media (max-width: 1199px) {
    .about-company-grid {
        gap: 42px;
    }

    .about-company-content h2 {
        font-size: 40px;
    }

    .about-main-image img {
        height: 570px;
    }

    .about-card-top {
        left: -18px;
    }

    .about-card-bottom {
        right: -18px;
    }
}

@media (max-width: 991px) {
    .about-company-section {
        padding: 90px 0;
    }

    .about-company-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-company-content {
        order: 2;
    }

    .about-company-visual {
        order: 1;
    }

    .about-visual-wrap {
        max-width: 100%;
        margin-left: 0;
    }

    .about-company-content h2 {
        font-size: 36px;
    }

    .about-main-image img {
        height: 520px;
    }

    .about-card-top {
        top: 20px;
        left: 20px;
    }

    .about-card-bottom {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .about-company-section {
        padding: 75px 0;
    }

    .about-company-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .about-company-lead {
        font-size: 17px;
    }

    .about-feature-card {
        padding: 16px;
        border-radius: 16px;
    }

    .about-company-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn {
        width: 100%;
    }

    .about-main-image img {
        height: 430px;
    }

    .about-floating-card {
        position: static;
        max-width: 100%;
        margin-top: 16px;
        animation: none;
    }
}

@media (max-width: 575px) {
    .about-company-content h2 {
        font-size: 26px;
    }

    .about-company-tag {
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .about-company-content p {
        font-size: 15px;
    }

    .about-feature-card {
        flex-direction: column;
        gap: 12px;
    }

    .about-feature-icon {
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .about-main-image img {
        height: 360px;
    }
}