/* 
*  CSS TABLE OF CONTENTS
*   
*  1.0 - Hero
*    1.1 - Play Button
*    1.2 - Hero Elements
*  2.0 - Hero 2
*  3.0 - Upcoming Matches
*  4.0 - Match Details
*  5.0 - Latest Matches
*  6.0 - Watch Live
*  7.0 - Team
*    7.1 - Team Shape
*    7.2 - Team Details
*  8.0 - Player Details
*  9.0 - About Section
*  10.0 - Promo Section
*  11.0 - Call to Action
*  12.0 - Gameplay Section
*  13.0 - Testimonial Section
*  14.0 - Contact Section
*  15.0 - FAQ Section
*  16.0 - Sponsor Section
*  17.0 - Footer
*    17.1 - Subscribe Form
*    17.2 - Contact
*    17.3 - Copyright
*/

/*** 0 - Cosmic background: sharp stars, grid, orbs, lines (no background images) ***/
body {
    background-color: #05050c;
    background-image: none;
}

/* z-index 0 so it sits above body bg but header (transparent) can show it through */
.cosmic-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Keep all content above the cosmic layer (mobile-safe stacking) */
body > section,
body > footer {
    position: relative;
    z-index: 1;
}

/* Subtle depth gradient (vertical band for section separation) */
.cosmic-depth-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.012) 40%,
        rgba(255, 255, 255, 0.018) 50%,
        rgba(255, 255, 255, 0.012) 60%,
        transparent 100%
    );
    opacity: 0.9;
}

/* Tech-style dot mesh (inspired but altered: 20px grid, dual-color) */
.cosmic-dot-mesh {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle 1px at 0 0, rgba(6, 182, 212, 0.04) 0%, transparent 0%),
        radial-gradient(circle 1px at 2% 3%, rgba(124, 58, 237, 0.03) 0%, transparent 0%),
        radial-gradient(circle 1px at 4% 1%, rgba(255, 255, 255, 0.035) 0%, transparent 0%);
    background-size: 20px 20px;
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.95;
}

/* Soft ambient blobs (large blurred orbs, altered positions and intensities) */
.cosmic-ambient-blobs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.cosmic-blob--1 {
    width:  min(600px, 50vmax);
    height: min(600px, 50vmax);
    left: 15%;
    top: 25%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0.02) 50%, transparent 70%);
}

.cosmic-blob--2 {
    width:  min(500px, 45vmax);
    height: min(500px, 45vmax);
    right: 10%;
    top: 55%;
    transform: translate(50%, -50%);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, rgba(152, 65, 255, 0.02) 45%, transparent 70%);
}

.cosmic-blob--3 {
    width:  min(550px, 48vmax);
    height: min(550px, 48vmax);
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, 50%);
    background: radial-gradient(circle, rgba(12, 215, 232, 0.05) 0%, rgba(124, 58, 237, 0.03) 40%, transparent 65%);
}

/* Floating accent dots (altered positions, staggered animation) */
.cosmic-float-dots {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-float-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.35);
    animation: cosmicFloatDot 4s ease-in-out infinite;
}

.cosmic-float-dot:nth-child(odd) {
    background: rgba(124, 58, 237, 0.3);
    animation-duration: 5s;
    animation-delay: 0.5s;
}

.cosmic-float-dot:nth-child(3n) {
    animation-duration: 3.5s;
    animation-delay: 1s;
}

@keyframes cosmicFloatDot {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-12px); opacity: 0.9; }
}

/* Sharp dotted grid overlay */
.cosmic-grid {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle 1px at 0 0, rgba(152, 65, 255, 0.2) 0%, transparent 0%),
        radial-gradient(circle 1px at 4% 0, rgba(255, 255, 255, 0.06) 0%, transparent 0%),
        radial-gradient(circle 1px at 8% 0, rgba(255, 255, 255, 0.05) 0%, transparent 0%);
    background-size: 8% 8%;
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.9;
}

/* Main starfield – sharp 1–2px dots */
.cosmic-stars {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        5vw 10vh 0 0 rgba(255, 255, 255, 0.98),
        12vw 25vh 0 0 rgba(255, 255, 255, 0.9),
        22vw 8vh 0 0 rgba(255, 255, 255, 0.95),
        35vw 40vh 0 0 rgba(255, 255, 255, 0.85),
        45vw 18vh 0 0 rgba(255, 255, 255, 0.92),
        55vw 55vh 0 0 rgba(255, 255, 255, 0.88),
        65vw 12vh 0 0 rgba(255, 255, 255, 0.95),
        78vw 35vh 0 0 rgba(255, 255, 255, 0.8),
        88vw 60vh 0 0 rgba(255, 255, 255, 0.9),
        15vw 45vh 0 0 rgba(255, 255, 255, 0.75),
        28vw 70vh 0 0 rgba(255, 255, 255, 0.9),
        42vw 82vh 0 0 rgba(255, 255, 255, 0.7),
        58vw 28vh 0 0 rgba(255, 255, 255, 0.85),
        72vw 75vh 0 0 rgba(255, 255, 255, 0.92),
        8vw 65vh 0 0 rgba(255, 255, 255, 0.65),
        92vw 22vh 0 0 rgba(255, 255, 255, 0.82),
        18vw 5vh 0 0 rgba(255, 255, 255, 0.78),
        38vw 52vh 0 0 rgba(255, 255, 255, 0.88),
        48vw 38vh 0 0 rgba(255, 255, 255, 0.72),
        62vw 48vh 0 0 rgba(255, 255, 255, 0.85),
        85vw 42vh 0 0 rgba(255, 255, 255, 0.9),
        3vw 32vh 0 0 rgba(255, 255, 255, 0.68),
        25vw 88vh 0 0 rgba(255, 255, 255, 0.8),
        52vw 68vh 0 0 rgba(255, 255, 255, 0.75),
        70vw 8vh 0 0 rgba(255, 255, 255, 0.95),
        95vw 55vh 0 0 rgba(255, 255, 255, 0.78),
        10vw 78vh 0 0 rgba(255, 255, 255, 0.6),
        32vw 15vh 0 0 rgba(255, 255, 255, 0.88),
        68vw 62vh 0 0 rgba(255, 255, 255, 0.82),
        82vw 18vh 0 0 rgba(255, 255, 255, 0.72),
        7vw 42vh 0 0 rgba(200, 220, 255, 0.8),
        44vw 5vh 0 0 rgba(220, 210, 255, 0.75),
        76vw 48vh 0 0 rgba(255, 255, 255, 0.88),
        50vw 92vh 0 0 rgba(255, 255, 255, 0.65),
        90vw 78vh 0 0 rgba(255, 255, 255, 0.82);
}

/* Dense small star layer */
.cosmic-stars--dense {
    width: 1px;
    height: 1px;
    box-shadow:
        2vw 4vh 0 0 rgba(255, 255, 255, 0.5),
        6vw 14vh 0 0 rgba(255, 255, 255, 0.4),
        11vw 7vh 0 0 rgba(255, 255, 255, 0.45),
        16vw 22vh 0 0 rgba(255, 255, 255, 0.35),
        21vw 3vh 0 0 rgba(255, 255, 255, 0.5),
        26vw 19vh 0 0 rgba(255, 255, 255, 0.4),
        31vw 11vh 0 0 rgba(255, 255, 255, 0.38),
        36vw 27vh 0 0 rgba(255, 255, 255, 0.42),
        41vw 6vh 0 0 rgba(255, 255, 255, 0.35),
        46vw 31vh 0 0 rgba(255, 255, 255, 0.48),
        51vw 15vh 0 0 rgba(255, 255, 255, 0.4),
        56vw 44vh 0 0 rgba(255, 255, 255, 0.35),
        61vw 9vh 0 0 rgba(255, 255, 255, 0.45),
        66vw 38vh 0 0 rgba(255, 255, 255, 0.4),
        71vw 23vh 0 0 rgba(255, 255, 255, 0.38),
        76vw 52vh 0 0 rgba(255, 255, 255, 0.42),
        81vw 17vh 0 0 rgba(255, 255, 255, 0.35),
        86vw 41vh 0 0 rgba(255, 255, 255, 0.48),
        91vw 5vh 0 0 rgba(255, 255, 255, 0.4),
        4vw 36vh 0 0 rgba(255, 255, 255, 0.35),
        14vw 58vh 0 0 rgba(255, 255, 255, 0.42),
        24vw 72vh 0 0 rgba(255, 255, 255, 0.38),
        34vw 46vh 0 0 rgba(255, 255, 255, 0.45),
        54vw 61vh 0 0 rgba(255, 255, 255, 0.4),
        64vw 33vh 0 0 rgba(255, 255, 255, 0.35),
        74vw 79vh 0 0 rgba(255, 255, 255, 0.48),
        84vw 12vh 0 0 rgba(255, 255, 255, 0.42),
        94vw 67vh 0 0 rgba(255, 255, 255, 0.38);
}

/* Micro star layer – finest dots */
.cosmic-stars--micro {
    width: 1px;
    height: 1px;
    box-shadow:
        3vw 9vh 0 0 rgba(255, 255, 255, 0.3),
        9vw 33vh 0 0 rgba(255, 255, 255, 0.25),
        17vw 13vh 0 0 rgba(255, 255, 255, 0.28),
        23vw 51vh 0 0 rgba(255, 255, 255, 0.22),
        29vw 29vh 0 0 rgba(255, 255, 255, 0.3),
        37vw 64vh 0 0 rgba(255, 255, 255, 0.26),
        43vw 2vh 0 0 rgba(255, 255, 255, 0.24),
        49vw 41vh 0 0 rgba(255, 255, 255, 0.28),
        57vw 77vh 0 0 rgba(255, 255, 255, 0.22),
        63vw 18vh 0 0 rgba(255, 255, 255, 0.3),
        69vw 56vh 0 0 rgba(255, 255, 255, 0.25),
        77vw 8vh 0 0 rgba(255, 255, 255, 0.27),
        83vw 47vh 0 0 rgba(255, 255, 255, 0.23),
        91vw 71vh 0 0 rgba(255, 255, 255, 0.26),
        1vw 21vh 0 0 rgba(255, 255, 255, 0.28),
        19vw 83vh 0 0 rgba(255, 255, 255, 0.24),
        33vw 37vh 0 0 rgba(255, 255, 255, 0.26),
        47vw 59vh 0 0 rgba(255, 255, 255, 0.22),
        61vw 24vh 0 0 rgba(255, 255, 255, 0.29),
        73vw 89vh 0 0 rgba(255, 255, 255, 0.25),
        87vw 14vh 0 0 rgba(255, 255, 255, 0.27),
        97vw 62vh 0 0 rgba(255, 255, 255, 0.23);
}

/* Sharper nebulae – less blur */
.cosmic-nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.5;
    pointer-events: none;
}

.cosmic-nebula-1 {
    width: 70vmax;
    height: 70vmax;
    left: -15vmax;
    top: -5vmax;
    background: radial-gradient(circle at 60% 40%, rgba(152, 65, 255, 0.5) 0%, rgba(60, 115, 255, 0.2) 35%, transparent 65%);
}

.cosmic-nebula-2 {
    width: 55vmax;
    height: 55vmax;
    right: -10vmax;
    top: 25%;
    background: radial-gradient(circle at 30% 50%, rgba(12, 215, 232, 0.35) 0%, rgba(152, 65, 255, 0.15) 45%, transparent 65%);
}

.cosmic-nebula-3 {
    width: 45vmax;
    height: 45vmax;
    left: 35%;
    bottom: -10vmax;
    background: radial-gradient(circle at 50% 30%, rgba(152, 65, 255, 0.4) 0%, rgba(20, 15, 40, 0.15) 55%, transparent 70%);
}

/* Distant galaxies – small elliptical blurs */
.cosmic-galaxies {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-galaxy {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.4;
}

.cosmic-galaxy--1 {
    width: 200px;
    height: 80px;
    left: 5%;
    top: 70%;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(152, 65, 255, 0.35), transparent 75%);
    transform: rotate(-25deg);
}

.cosmic-galaxy--2 {
    width: 160px;
    height: 60px;
    right: 8%;
    top: 80%;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(12, 215, 232, 0.25), transparent 70%);
    transform: rotate(15deg);
}

.cosmic-galaxy--3 {
    width: 140px;
    height: 55px;
    left: 60%;
    top: 8%;
    background: radial-gradient(ellipse 75% 45% at 50% 50%, rgba(152, 65, 255, 0.3), transparent 72%);
    transform: rotate(40deg);
}

/* Sharp orbs (planet-like) */
.cosmic-orbs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.25), rgba(152, 65, 255, 0.15) 40%, transparent 70%);
    border: 1px solid rgba(152, 65, 255, 0.2);
}

.cosmic-orb--1 {
    width: 120px;
    height: 120px;
    left: 8%;
    top: 18%;
}

.cosmic-orb--2 {
    width: 80px;
    height: 80px;
    right: 12%;
    top: 55%;
    background: radial-gradient(circle at 35% 35%, rgba(12, 215, 232, 0.2), rgba(152, 65, 255, 0.08) 45%, transparent 70%);
    border-color: rgba(12, 215, 232, 0.15);
}

.cosmic-orb--3 {
    width: 60px;
    height: 60px;
    left: 75%;
    top: 12%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15), rgba(152, 65, 255, 0.08) 50%, transparent 75%);
    border-color: rgba(255, 255, 255, 0.08);
}

.cosmic-orb--4 {
    width: 45px;
    height: 45px;
    left: 25%;
    top: 75%;
    background: radial-gradient(circle at 35% 35%, rgba(12, 215, 232, 0.18), transparent 65%);
    border-color: rgba(12, 215, 232, 0.12);
}

.cosmic-orb--5 {
    width: 35px;
    height: 35px;
    right: 28%;
    top: 22%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.12), rgba(152, 65, 255, 0.06) 55%, transparent 75%);
    border-color: rgba(152, 65, 255, 0.1);
}

.cosmic-orb--6 {
    width: 55px;
    height: 55px;
    left: 52%;
    bottom: 25%;
    background: radial-gradient(circle at 35% 35%, rgba(152, 65, 255, 0.2), transparent 65%);
    border-color: rgba(152, 65, 255, 0.15);
}

/* Thin rings */
.cosmic-rings {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(152, 65, 255, 0.15);
    background: transparent;
}

.cosmic-ring--1 {
    width: 280px;
    height: 280px;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(15deg);
}

.cosmic-ring--2 {
    width: 160px;
    height: 160px;
    right: 18%;
    top: 35%;
    border-color: rgba(12, 215, 232, 0.12);
}

/* Sharp diagonal lines */
.cosmic-sharp-lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(152, 65, 255, 0.12) 30%, rgba(152, 65, 255, 0.08) 50%, transparent 100%);
    width: 1px;
    height: 120%;
}

.cosmic-line--1 {
    left: 15%;
    top: -10%;
    transform: rotate(-18deg);
}

.cosmic-line--2 {
    left: 50%;
    top: -5%;
    transform: rotate(8deg);
    background: linear-gradient(90deg, transparent 0%, rgba(12, 215, 232, 0.08) 40%, transparent 100%);
}

.cosmic-line--3 {
    right: 20%;
    top: -8%;
    left: auto;
    transform: rotate(22deg);
    background: linear-gradient(90deg, transparent 0%, rgba(152, 65, 255, 0.1) 35%, transparent 100%);
}

.cosmic-line--4 {
    left: 68%;
    top: -15%;
    transform: rotate(-12deg);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 25%, transparent 100%);
}

.cosmic-line--5 {
    left: 8%;
    top: 10%;
    transform: rotate(5deg);
    width: 1px;
    height: 80%;
    background: linear-gradient(180deg, transparent 0%, rgba(152, 65, 255, 0.06) 50%, transparent 100%);
}

/* Cosmic triangles */
.cosmic-triangles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cosmic-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.2;
}

.cosmic-triangle--1 {
    border-width: 0 40px 70px 40px;
    border-color: transparent transparent rgba(152, 65, 255, 0.25) transparent;
    left: 85%;
    top: 60%;
    transform: rotate(20deg);
}

.cosmic-triangle--2 {
    border-width: 50px 28px 0 28px;
    border-color: rgba(12, 215, 232, 0.15) transparent transparent transparent;
    left: 12%;
    top: 25%;
    transform: rotate(-30deg);
}

.cosmic-triangle--3 {
    border-width: 0 25px 43px 25px;
    border-color: transparent transparent rgba(255, 255, 255, 0.08) transparent;
    left: 42%;
    bottom: 15%;
    transform: rotate(55deg);
}

/* Shooting star – sharp streak */
.cosmic-shooting-star {
    position: absolute;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(152, 65, 255, 0.4) 40%, transparent 100%);
    top: 15%;
    right: 25%;
    transform: rotate(-45deg);
    animation: cosmic-shooting 8s ease-in-out 2s infinite;
    opacity: 0.85;
}

@keyframes cosmic-shooting {
    0% { opacity: 0; transform: rotate(-45deg) translateX(0); }
    5% { opacity: 0.85; transform: rotate(-45deg) translateX(-20px); }
    15% { opacity: 0.85; transform: rotate(-45deg) translateX(-200px); }
    25% { opacity: 0; transform: rotate(-45deg) translateX(-400px); }
    100% { opacity: 0; transform: rotate(-45deg) translateX(-400px); }
}

.cosmic-shooting-star--2 {
    top: 55%;
    left: 20%;
    right: auto;
    transform: rotate(35deg);
    background: linear-gradient(90deg, transparent 0%, rgba(12, 215, 232, 0.5) 30%, rgba(255, 255, 255, 0.7) 100%);
    animation: cosmic-shooting-2 10s ease-in-out 5s infinite;
}

@keyframes cosmic-shooting-2 {
    0% { opacity: 0; transform: rotate(35deg) translateX(0); }
    5% { opacity: 0.7; transform: rotate(35deg) translateX(20px); }
    18% { opacity: 0.7; transform: rotate(35deg) translateX(220px); }
    28% { opacity: 0; transform: rotate(35deg) translateX(420px); }
    100% { opacity: 0; transform: rotate(35deg) translateX(420px); }
}

/* Header stays transparent – cosmic-bg (z-index 0) shows through so header matches platform */

/*** 1.0 - Hero ***/
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    text-align: center;
    padding-top: 100px;
}

.hero-content h4 {
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 65px;
    letter-spacing: -1.5px;
}

/* IQF Protocol title – bright glossy shine (vibrant blue → luminous purple, neon glow) */
.hero-content h1.hero-title-iqf {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    background: linear-gradient(105deg, #00d4ff 0%, #00b3ff 12%, #3c73ff 28%, #8a44ff 45%, #c534ff 62%, #e027ff 78%, #f90cff 92%, #ff6bff 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
    animation: iqf-title-shine 2.8s ease-in-out infinite;
}

@keyframes iqf-title-shine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}


.hero-content .hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
}

.hero-content .hero-highlight {
    color: #22d3ee;
    font-weight: 600;
}

/* Welcome gate – LAUNCH APP: zoom on wrapper so it always works */
.hero-content .btn-group {
    position: relative;
    display: inline-block;
    overflow: visible;
    perspective: 800px;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content .btn-group:hover,
.hero-content .btn-group:active {
    transform: scale(1.12);
}

/* White layer below – same shape (no corner cut), offset down; brightens on hover */
.hero-content .btn-group::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 56px;
    z-index: 0;
    background: linear-gradient(to right bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
    clip-path: none;
    border-radius: 12px;
    transform: translateY(8px);
    opacity: 0.5;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                box-shadow 0.3s ease;
}

.hero-content .btn-group:hover::before {
    transform: translateY(12px);
    opacity: 0.95;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.hero-content .launch-app-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(145deg,
                rgba(194, 196, 200, 0.98) 0%,
                rgba(140, 170, 220, 0.95) 15%,
                rgb(64, 145, 248) 35%,
                rgba(64, 145, 248, 0.92) 50%,
                rgba(90, 155, 245, 0.95) 65%,
                rgba(194, 196, 200, 0.9) 85%,
                rgba(64, 145, 248, 0.88) 100%);
    background-color: rgb(64, 145, 248);
    clip-path: none;
    border-radius: 12px;
    min-width: 220px;
    height: 56px;
    line-height: 56px;
    padding: 0 48px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3),
                 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform-origin: center center;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5),
                0 -1px 0 0 rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
                inset 0 -2px 8px rgba(0, 0, 0, 0.2),
                inset 0 0 60px rgba(64, 145, 248, 0.2);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

/* Metallic shine sweep – light moving across the button */
.hero-content .launch-app-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 25%,
        rgba(255, 255, 255, 0.08) 35%,
        rgba(255, 255, 255, 0.45) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.45) 55%,
        rgba(255, 255, 255, 0.12) 65%,
        transparent 75%,
        transparent 100%
    );
    pointer-events: none;
    animation: launch-btn-shine 2.8s ease-in-out infinite;
}

@keyframes launch-btn-shine {
    0%   { transform: translateX(-120%) skewX(-12deg); opacity: 0.9; }
    15%  { transform: translateX(-120%) skewX(-12deg); opacity: 0.9; }
    50%  { transform: translateX(180%) skewX(-12deg); opacity: 1; }
    85%  { transform: translateX(180%) skewX(-12deg); opacity: 0.9; }
    100% { transform: translateX(180%) skewX(-12deg); opacity: 0.9; }
}

/* Metallic top-edge highlight */
.hero-content .launch-app-btn::after {
    content: "";
    position: absolute;
    left: 8%;
    top: 0;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.25) 15%,
                rgba(255, 255, 255, 0.75) 50%,
                rgba(255, 255, 255, 0.25) 85%,
                transparent);
    border-radius: 2px;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-content .launch-app-btn:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35),
                 0 0 2px rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.6),
                0 -1px 0 0 rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(64, 145, 248, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
                inset 0 -2px 10px rgba(0, 0, 0, 0.15),
                inset 0 0 80px rgba(64, 145, 248, 0.25);
}

/* Disable default-btn ripple (big pink circle) – we use zoom + white layer only */
.hero-content .launch-app-btn span {
    display: none !important;
}

.hero-content .hero-element {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content img {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    max-width: 680px;
    max-height: 460px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: hero-image-enter 0.9s ease-out, hero-image-float 4s ease-in-out 0.9s infinite;
}

@keyframes hero-image-enter {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes hero-image-float {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1) translateY(-14px);
    }
}

/*** 1.1 - Play Button ***/
.play-btn {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    width: 90px;
    height: 90px;
    top: 50%;
    transform: translateY(0%);
    line-height: 90px;
    text-align: center;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.play-btn svg {
    fill: #fff;
    width: 40px;
    margin-left: 5px;
}

.play-btn .ripple,
.play-btn .ripple:before,
.play-btn .ripple:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -webkit-animation: rippleanim 3s infinite;
    -moz-animation: rippleanim 3s infinite;
    -ms-animation: rippleanim 3s infinite;
    -o-animation: rippleanim 3s infinite;
    animation: rippleanim 3s infinite;
}

.play-btn .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.play-btn .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

/*** 1.2 - Hero Elements ***/
.hero-element {
    position: relative;
}

.hero-element .shape-wrap {
    width: 50%;
    height: 100%;
    position: absolute;
    left: -40px;
    bottom: 0;
    transform: skew(20deg);
    z-index: -1;
}

.hero-element .shape {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    width: 200px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.hero-element .shape:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero-element .shape.shape-1 {
    width: 220px;
    height: 60%;
    left: 30%;
    z-index: 1;
    opacity: 0.8;
}

.hero-element .shape.shape-2 {
    height: 90%;
    left: 20%;
    opacity: 0.7;
}

.hero-element .shape.shape-3 {
    height: 70%;
    z-index: 2;
    opacity: 0.4;
}

.hero-element .shape.shape-4 {
    height: 40%;
    left: -10%;
    opacity: 0.6;
}

.hero-element .shape-wrap.right {
    transform: skew(-20deg);
    left: auto;
    right: -40px;
}

.hero-element .right .shape {
    left: auto;
    right: 0;
}

.hero-element .right .shape.shape-1 {
    left: auto;
    right: 30%;
}

.hero-element .right .shape.shape-2 {
    left: auto;
    right: 20%;
}

.hero-element .right .shape.shape-3 {
    left: auto;
}

.hero-element .right .shape.shape-4 {
    left: auto;
    right: -10%;
}

/*** 2.0 - Hero 2 ***/
.hero-section-2 {
    height: 600px;
    margin-bottom: 40px;
    position: relative;
}

.hero-section-2 .overlay {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.hero-section-2 .hero-content {
    padding: 80px 0 30px 0;
}

.hero-section-2 .hero-content h1 {
    font-size: 56px;
    line-height: 58px;
}

/*** 3.0 - Upcoming Matches ***/
.matches-section.padding {
    padding-top: 70px;
}

.matches-section .section-heading.mb-40 {
    margin-top: -8px;
}

.matches-section .section-iqf-logo {
    margin-bottom: 14px;
}

.matches-section .iqf-logo-img {
    max-width: 118px;
    height: auto;
    display: inline-block;
}

.matches-section .section-iqf-desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
}

.matches-section .section-iqf-desc .iqf-desc-intro {
    display: block;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.matches-section .section-iqf-desc .iqf-desc-tagline {
    display: block;
    font-size: 0.95em;
    letter-spacing: 0.02em;
    opacity: 0.95;
}

.matches-section .section-iqf-desc .hero-highlight {
    color: #22d3ee;
    font-weight: 600;
}

.matches-section .section-iqf-desc .iqf-gradient {
    font-weight: 700;
    background: linear-gradient(to right, #f90cff, #0cd7e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.matches-section .mining-cta-wrap {
    margin-top: 48px;
    padding-top: 24px;
}

.matches-section .mining-cta-heading {
    margin: 0 0 6px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: transparent;
    background: linear-gradient(135deg, #f472b6 0%, #e879f9 20%, #c084fc 45%, #a78bfa 65%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pre-launch button: "Pre Launch" – same gradient as pre-launch-section.html (.pre-launch-heading) */
.matches-section .mining-cta-wrap .mining-cta-btn--prelaunch .mining-cta-btn-line1-inner {
    color: transparent;
    background: linear-gradient(135deg, #f472b6 0%, #e879f9 20%, #c084fc 45%, #a78bfa 65%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.matches-section .mining-cta-sub {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.matches-section .mining-cta-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(145deg,
                rgba(194, 196, 200, 0.98) 0%,
                rgba(140, 170, 220, 0.95) 15%,
                rgb(64, 145, 248) 35%,
                rgba(64, 145, 248, 0.92) 50%,
                rgba(90, 155, 245, 0.95) 65%,
                rgba(194, 196, 200, 0.9) 85%,
                rgba(64, 145, 248, 0.88) 100%);
    background-color: rgb(64, 145, 248);
    clip-path: none;
    border-radius: 12px;
    min-width: 220px;
    height: 56px;
    line-height: 56px;
    padding: 0 48px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3),
                 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform-origin: center center;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5),
                0 -1px 0 0 rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
                inset 0 -2px 8px rgba(0, 0, 0, 0.2),
                inset 0 0 60px rgba(64, 145, 248, 0.2);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    text-decoration: none;
}

.matches-section .mining-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 25%,
        rgba(255, 255, 255, 0.08) 35%,
        rgba(255, 255, 255, 0.45) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.45) 55%,
        rgba(255, 255, 255, 0.12) 65%,
        transparent 75%,
        transparent 100%
    );
    pointer-events: none;
    animation: launch-btn-shine 2.8s ease-in-out infinite;
}

@keyframes mining-cta-shine {
    0%   { transform: translateX(-120%) skewX(-12deg); opacity: 0.9; }
    15%  { transform: translateX(-120%) skewX(-12deg); opacity: 0.9; }
    50%  { transform: translateX(180%) skewX(-12deg); opacity: 1; }
    85%  { transform: translateX(180%) skewX(-12deg); opacity: 0.9; }
    100% { transform: translateX(180%) skewX(-12deg); opacity: 0.9; }
}

.matches-section .mining-cta-btn::after {
    content: "";
    position: absolute;
    left: 8%;
    top: 0;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.25) 15%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.25) 85%,
        transparent);
    border-radius: 2px;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.matches-section .mining-cta-btn:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35),
                 0 0 2px rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.6),
                0 -1px 0 0 rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(64, 145, 248, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
                inset 0 -2px 10px rgba(0, 0, 0, 0.15),
                inset 0 0 80px rgba(64, 145, 248, 0.25);
}

.matches-section .mining-cta-desc {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.matches-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 56px;
}

.matches-list .match-time {
    position: relative;
    z-index: 2;
}

.matches-list:not(:last-of-type) {
    margin-bottom: 50px;
}

.participate-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 0;
    min-width: 0;
    max-width: 42%;
    text-align: right;
    position: relative;
    z-index: 1;
}

.participate-team img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

/* Miner cards: same size for all, colored glow per tier */
.participate-team .miner-card-img {
    max-height: 165px !important;
    width: auto;
    object-fit: contain;
}

.miner-card-img--basic {
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.6)) drop-shadow(0 0 24px rgba(34, 197, 94, 0.4));
}

.miner-card-img--advanced {
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6)) drop-shadow(0 0 24px rgba(59, 130, 246, 0.4));
}

.miner-card-img--pro {
    filter: drop-shadow(0 0 12px rgba(192, 132, 252, 0.6)) drop-shadow(0 0 24px rgba(147, 51, 234, 0.4));
}

.miner-card-img--elite {
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.6)) drop-shadow(0 0 24px rgba(234, 88, 12, 0.4));
}

.miner-card-img--master {
    filter: drop-shadow(0 0 12px rgba(234, 179, 8, 0.6)) drop-shadow(0 0 24px rgba(202, 138, 4, 0.4));
}

.miner-card-img--supreme {
    filter: drop-shadow(0 0 12px rgba(147, 197, 253, 0.6)) drop-shadow(0 0 24px rgba(96, 165, 250, 0.4));
}

.participate-team:after,
.participate-team:before {
    background: #f90cff;
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(90% 0, 100% 40%, 100% 100%, 0 100%, 0 0);
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 90%;
    height: 110px;
    transform: translateY(-50%);
    opacity: 0.3;
    border-radius: 5px;
    z-index: -1;
}

.participate-team:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
}

.participate-team.oponent:after,
.participate-team.oponent:before {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
    right: auto;
    left: 0;
}

.participate-team.oponent {
    text-align: left;
}

.participate-team h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 5px 50px 0 0;
}

.participate-team.oponent h3 {
    margin: 5px 0 0 50px;
}

.match-info-flip {
    position: absolute;
    right: 35px;
    bottom: -22px;
    perspective: 500px;
    min-height: 55px;
    min-width: 180px;
}

.participate-team.oponent .match-info-flip {
    right: auto;
    left: 35px;
}

.match-info-inner {
    position: relative;
    width: 100%;
    min-height: 55px;
    transform-style: preserve-3d;
}

@keyframes miner-info-flip {
    0% { transform: rotateY(0deg); }
    45% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    95% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.match-info-front,
.match-info-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    box-sizing: border-box;
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 60%, 0 0);
    border-radius: 3px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    backface-visibility: hidden;
}

.participate-team.oponent .match-info-front,
.participate-team.oponent .match-info-back {
    clip-path: polygon(100% 0, 100% 60%, 90% 100%, 0 100%, 0 0);
}

.match-info-front {
    transform: rotateY(0deg);
}

.match-info-back {
    transform: rotateY(180deg);
}

.match-time .cycle-step-wrap {
    position: relative;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    perspective: 520px;
    transform-style: preserve-3d;
}

.match-time .cycle-step {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    color: #fff;
    will-change: opacity;
    padding-bottom: 12px;
}

/* Creative: gradient text + coloured glow per step */
.match-time-row-1 .cycle-mine {
    background: linear-gradient(90deg, #15803d, #4ade80, #86efac, #22c55e);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.4));
    animation: cycle-one-at-a-time-mine 6s ease-in-out infinite;
}

.match-time-row-1 .cycle-trade,
.match-time-row-2 .cycle-trade {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #93c5fd, #60a5fa);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.4));
    animation: cycle-one-at-a-time-trade 6s ease-in-out infinite;
}

.match-time-row-1 .cycle-predict,
.match-time-row-3 .cycle-predict {
    background: linear-gradient(90deg, #6d28d9, #a78bfa, #c4b5fd, #9841ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.4));
    animation: cycle-one-at-a-time-predict 6s ease-in-out infinite;
}

/* Drawing underline when word is active */
.match-time .cycle-step::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    margin-left: -45%;
    height: 3px;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    will-change: transform;
}

.match-time-row-1 .cycle-mine::after {
    background: linear-gradient(90deg, transparent, #22c55e, #4ade80, transparent);
    animation: cycle-underline-mine 6s cubic-bezier(0.34, 1.2, 0.64, 1) infinite;
}

.match-time-row-1 .cycle-trade::after,
.match-time-row-2 .cycle-trade::after {
    background: linear-gradient(90deg, transparent, #3b82f6, #93c5fd, transparent);
    animation: cycle-underline-trade 6s cubic-bezier(0.34, 1.2, 0.64, 1) infinite;
}

.match-time-row-1 .cycle-predict::after,
.match-time-row-3 .cycle-predict::after {
    background: linear-gradient(90deg, transparent, #9841ff, #a78bfa, transparent);
    animation: cycle-underline-predict 6s cubic-bezier(0.34, 1.2, 0.64, 1) infinite;
}

/* One word at a time: stack in row-1 and cycle opacity */
.match-time-row-1 .cycle-step-wrap {
    display: block;
}
.match-time-row-1 .cycle-step-wrap .cycle-step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

@keyframes cycle-one-at-a-time-mine {
    0%, 30% { opacity: 1; }
    33%, 100% { opacity: 0; }
}
@keyframes cycle-one-at-a-time-trade {
    0%, 30% { opacity: 0; }
    33%, 63% { opacity: 1; }
    66%, 100% { opacity: 0; }
}
@keyframes cycle-one-at-a-time-predict {
    0%, 63% { opacity: 0; }
    66%, 100% { opacity: 1; }
}

/* Flip + bouncy landing + gradient sweep (creative) */
@keyframes cycle-flip-mine {
    0% { opacity: 0; transform: rotateX(-85deg) scale(0.88); background-position: 0% 50%; }
    6% { opacity: 1; transform: rotateX(-15deg) scale(0.98); background-position: 0% 50%; }
    8% { opacity: 1; transform: rotateX(0deg) scale(1.06); background-position: 15% 50%; }
    12% { opacity: 1; transform: rotateX(0deg) scale(1); background-position: 50% 50%; }
    27% { opacity: 1; transform: rotateX(0deg) scale(1); background-position: 100% 50%; }
    31% { opacity: 1; transform: rotateX(45deg) scale(0.96); background-position: 100% 50%; }
    33% { opacity: 0; transform: rotateX(85deg) scale(0.88); background-position: 100% 50%; }
    34%, 100% { opacity: 0; transform: rotateX(85deg) scale(0.88); background-position: 100% 50%; }
}

@keyframes cycle-flip-trade {
    0%, 30% { opacity: 0; transform: rotateX(-85deg) scale(0.88); background-position: 0% 50%; }
    31% { opacity: 0; transform: rotateX(-85deg) scale(0.88); background-position: 0% 50%; }
    37% { opacity: 1; transform: rotateX(-15deg) scale(0.98); background-position: 0% 50%; }
    39% { opacity: 1; transform: rotateX(0deg) scale(1.06); background-position: 15% 50%; }
    43% { opacity: 1; transform: rotateX(0deg) scale(1); background-position: 50% 50%; }
    58% { opacity: 1; transform: rotateX(0deg) scale(1); background-position: 100% 50%; }
    62% { opacity: 1; transform: rotateX(45deg) scale(0.96); background-position: 100% 50%; }
    64% { opacity: 0; transform: rotateX(85deg) scale(0.88); background-position: 100% 50%; }
    65%, 100% { opacity: 0; transform: rotateX(85deg) scale(0.88); background-position: 100% 50%; }
}

@keyframes cycle-flip-predict {
    0%, 63% { opacity: 0; transform: rotateX(-85deg) scale(0.88); background-position: 0% 50%; }
    64% { opacity: 0; transform: rotateX(-85deg) scale(0.88); background-position: 0% 50%; }
    70% { opacity: 1; transform: rotateX(-15deg) scale(0.98); background-position: 0% 50%; }
    72% { opacity: 1; transform: rotateX(0deg) scale(1.06); background-position: 15% 50%; }
    76% { opacity: 1; transform: rotateX(0deg) scale(1); background-position: 50% 50%; }
    91% { opacity: 1; transform: rotateX(0deg) scale(1); background-position: 100% 50%; }
    95% { opacity: 1; transform: rotateX(45deg) scale(0.96); background-position: 100% 50%; }
    97% { opacity: 0; transform: rotateX(85deg) scale(0.88); background-position: 100% 50%; }
    98%, 100% { opacity: 0; transform: rotateX(85deg) scale(0.88); background-position: 100% 50%; }
}

/* Underline draw-in / draw-out in sync with word */
@keyframes cycle-underline-mine {
    0%, 7% { transform: scaleX(0); opacity: 0; }
    8% { transform: scaleX(0.3); opacity: 1; }
    12% { transform: scaleX(1); opacity: 1; }
    27% { transform: scaleX(1); opacity: 1; }
    30% { transform: scaleX(0.5); opacity: 0.6; }
    33%, 100% { transform: scaleX(0); opacity: 0; }
}

@keyframes cycle-underline-trade {
    0%, 36% { transform: scaleX(0); opacity: 0; }
    39% { transform: scaleX(0.3); opacity: 1; }
    43% { transform: scaleX(1); opacity: 1; }
    58% { transform: scaleX(1); opacity: 1; }
    61% { transform: scaleX(0.5); opacity: 0.6; }
    64%, 100% { transform: scaleX(0); opacity: 0; }
}

@keyframes cycle-underline-predict {
    0%, 69% { transform: scaleX(0); opacity: 0; }
    72% { transform: scaleX(0.3); opacity: 1; }
    76% { transform: scaleX(1); opacity: 1; }
    91% { transform: scaleX(1); opacity: 1; }
    94% { transform: scaleX(0.5); opacity: 0.6; }
    97%, 100% { transform: scaleX(0); opacity: 0; }
}

/* Respect user motion preference (WCAG / international a11y) */
@media (prefers-reduced-motion: reduce) {
    .cosmic-shooting-star,
    .cosmic-shooting-star--2 {
        animation: none;
        opacity: 0.3;
    }
    .match-time .cycle-step-wrap {
        perspective: none;
    }
    .match-time .cycle-step {
        will-change: auto;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        background-position: 50% 50% !important;
    }
    .match-time .cycle-step::after {
        animation: none !important;
        transform: scaleX(1) !important;
        opacity: 0.5 !important;
    }
    .pred-card-flip-front,
    .pred-card-flip-back {
        animation: none !important;
    }
    .pred-card-flip-back {
        opacity: 0 !important;
    }
}

/*** 3.1 - Section Divider (after Mining Cards) – matches page-header style ***/
.section-divider-line {
    width: 100%;
    height: 4px;
    margin: 0;
    background: linear-gradient(90deg, rgba(152, 65, 255, 0) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0) 100%);
}

.section-divider.page-header {
    height: auto;
    min-height: 80px;
    padding: 40px 0;
    display: block;
}

/*** 3.2 - Token Tracker – numbers first, unified background ***/
.token-tracker-section {
    position: relative;
}

/* Unified background: single gradient overlay (more united, less scattered) */
.token-tracker-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 18, 0.85) 0%, rgba(8, 6, 28, 0.92) 50%, rgba(5, 5, 18, 0.88) 100%);
    pointer-events: none;
    z-index: 0;
}

.token-tracker-section .container {
    position: relative;
    z-index: 1;
}

.token-tracker-section .section-heading h2 span {
    color: #9841ff;
}

/* IQF Tracker – left-to-right light-up animation */
.token-tracker-section .section-heading h2 span.iqf-tracker-glow {
    background: linear-gradient(
        90deg,
        #9841ff 0%,
        #9841ff 30%,
        #b872ff 38%,
        #e0c4ff 45%,
        #fff 50%,
        #e0c4ff 55%,
        #b872ff 62%,
        #9841ff 70%,
        #9841ff 100%
    );
    background-size: 220% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: iqf-tracker-lightup 4s ease-in-out infinite;
}

@keyframes iqf-tracker-lightup {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: -120% 50%;
    }
}

.token-tracker-tab-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.token-tracker-tab-btn {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 180px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 0;
    text-align: center;
}

.token-tracker-tab-btn:not(.active) {
    opacity: 0.75;
}

.token-tracker-tab-btn:not(.active):hover {
    opacity: 1;
}

.token-tracker-tab-btn.active {
    opacity: 1;
    transform: translateY(-2px);
}

.token-tracker-tab-panel {
    display: none;
}

.token-tracker-tab-panel.active {
    display: block;
}

/* Ensure tab content is visible when panel is shown (WOW may leave hidden when panel was display:none) */
.token-tracker-tab-panel.active .token-tracker-grid,
.token-tracker-tab-panel.active .token-tracker-card {
    opacity: 1;
    visibility: visible;
}

.token-tracker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.token-tracker-card {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    clip-path: polygon(95% 0, 100% 20%, 100% 100%, 0% 100%, 0 66%, 0 0);
    padding: 24px 28px;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* No bottom bar – removed for cleaner number focus */
.token-tracker-card:before {
    display: none;
}

.token-tracker-card:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 8px);
    background-size: 6px 6px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.token-tracker-card:hover {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
}

.token-tracker-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 88px;
}

.token-tracker-card h4 {
    font-family: "Oxanium", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 10px 0;
}

.token-tracker-ctx {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 10px;
}

.token-tracker-value {
    font-family: "Oxanium", sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.token-tracker-value .las.la-fire {
    color: #f59e0b;
}

/* Animated burning flame SVG in tracker – inline, bold and visible */
.token-tracker-value .flame-burn-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.4em;
    line-height: 0;
}
.token-tracker-value .flame-burn-wrap .flame-burn-svg,
.token-tracker-value .flame-burn-wrap .flame-burn-icon {
    display: block;
    width: 1.65em;
    min-width: 32px;
    height: auto;
    max-height: 1.5em;
    vertical-align: middle;
}

/*** 3.3 - Prediction Market ***/
.prediction-market-section {
    position: relative;
}

/* Section heading – clean, balanced, platform vibe */
.prediction-market-section .watch-live-heading {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.prediction-market-section .watch-live-heading h3 {
    font-family: "Oxanium", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.prediction-market-section .watch-live-heading h2 {
    font-family: "Oxanium", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.prediction-market-section .watch-live-heading h2 span {
    background: linear-gradient(to right, #f90cff, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prediction-market-section .watch-live-heading p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 0;
}

.prediction-market-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 14px;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* Zoom in then zoom out – scale only (no fade) */
@keyframes pred-card-zoom {
    0%, 100% { transform: scale(0.98); }
    50% { transform: scale(1.05); }
}

/* Mobile-only tabs (shown via responsive.css on small screens) */
.prediction-market-mobile-tabs {
    display: none;
}

/* Cards grid – airdrop cards smaller, prediction card biggest */
.prediction-market-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr 0.9fr;
    gap: 24px;
}

.prediction-card {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.08) 0%, rgba(105, 85, 180, 0.25) 50%, rgba(105, 85, 180, 0.08) 100%);
    padding: 28px 26px;
    border-radius: 16px;
    position: relative;
    min-height: 280px;
    min-width: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s ease,
                background 0.4s ease;
}

.prediction-card:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 0 0 16px 16px;
    transition: opacity 0.3s ease;
}

.prediction-card:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Team-style background graphics for first and third cards (stacked trapezoids) */
.pred-card-shapes {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.pred-card-shapes .shape-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: skew(-5deg);
    z-index: 0;
}

.pred-card-shapes .shape {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(0% 0%, 80% 0, 100% 10%, 100% 100%, 0 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    transition: height 0.35s ease;
}

.pred-card-shapes .shape:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pred-card-shapes .shape.shape-1 {
    clip-path: polygon(0% 0%, 90% 0, 100% 10%, 100% 100%, 0 100%);
    width: 55%;
    height: 65%;
    left: 15%;
    z-index: 1;
    opacity: 0.14;
}

.pred-card-shapes .shape.shape-2 {
    width: 45%;
    height: 100%;
    left: 22%;
    opacity: 0.11;
}

.pred-card-shapes .shape.shape-3 {
    width: 35%;
    height: 85%;
    z-index: 2;
    opacity: 0.08;
    left: 8%;
}

.pred-card-shapes .shape.shape-4 {
    width: 28%;
    height: 55%;
    left: 5%;
    opacity: 0.1;
}

/* Status card: mirror entire shape block so it originates from the RIGHT */
.pred-card-shapes--status .shape-wrap {
    transform: scaleX(-1) skew(-5deg);
    transform-origin: center bottom;
}

/* Hover: shapes expand slightly (team carousel style) */
.prediction-card--airdrop:hover .pred-card-shapes .shape.shape-1,
.prediction-card--status:hover .pred-card-shapes .shape.shape-1 {
    height: 75%;
}
.prediction-card--airdrop:hover .pred-card-shapes .shape.shape-3,
.prediction-card--status:hover .pred-card-shapes .shape.shape-3 {
    height: 92%;
}
.prediction-card--airdrop:hover .pred-card-shapes .shape.shape-4,
.prediction-card--status:hover .pred-card-shapes .shape.shape-4 {
    height: 62%;
}

/* Hover: lift, glow */
.prediction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(152, 65, 255, 0.25);
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.12) 0%, rgba(105, 85, 180, 0.4) 50%, rgba(105, 85, 180, 0.12) 100%);
}

/* Prediction card: stronger glow on hover */
.prediction-card--prediction:hover {
    box-shadow: 0 16px 50px rgba(152, 65, 255, 0.35);
}

/* Zoom animation only on PLAY NOW button */
.prediction-card--prediction .default-btn.match-category {
    animation: pred-card-zoom 5.5s ease-in-out infinite;
}

.prediction-card--prediction .default-btn.match-category:hover {
    animation-play-state: paused;
}

.prediction-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Centered content for first and third cards */
.pred-card-centered {
    align-items: center;
}

.prediction-card--status .prediction-card-inner .pred-card-tag {
    align-self: center;
}

.prediction-card--status .prediction-card-inner > p:first-of-type {
    margin-top: 100px;
}

/* Center card: SPORT top-left, PredictMe logo top-right */
.pred-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
    order: -1;
}

.pred-card-top-row .tag-sport {
    margin: 0;
}

.pred-card-logo {
    display: block;
    line-height: 0;
}

.pred-card-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.pred-card-centered p {
    text-align: center;
    width: 100%;
}

/* First card: smooth crossfade between "Biggest Airdrop" and "on prediction market" */
.pred-card-flip-wrap {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    margin-bottom: 16px;
}

.pred-card-flip-inner {
    position: relative;
    width: 240px;
    min-width: 240px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    box-sizing: border-box;
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(152, 65, 255, 0.25);
    overflow: hidden;
}

.pred-card-flip-front,
.pred-card-flip-back {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: "Oxanium", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.25;
    text-align: center;
    transition: none;
}

.pred-card-flip-front {
    transform: translateY(-50%);
    animation: pred-card-fade-front 5s ease-in-out infinite;
}

.pred-card-flip-back {
    transform: translateY(-50%);
    animation: pred-card-fade-back 5s ease-in-out infinite;
}

@keyframes pred-card-fade-front {
    0%, 36% { opacity: 1; transform: translateY(-50%); }
    42%, 54% { opacity: 0; transform: translateY(-58%); }
    60%, 100% { opacity: 1; transform: translateY(-50%); }
}

@keyframes pred-card-fade-back {
    0%, 36% { opacity: 0; transform: translateY(-42%); }
    42%, 54% { opacity: 1; transform: translateY(-50%); }
    60%, 100% { opacity: 0; transform: translateY(-58%); }
}

/* Tags: rounded, no sharp edges */
.pred-card-tag,
.prediction-card .tag {
    background-color: #ddd;
    color: #0c0c35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxanium", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 6px 16px;
    margin: 0 4px 10px 4px;
    transition: transform 0.3s ease;
}

.pred-card-tag {
    margin-bottom: 12px;
}

.prediction-card .tag:hover {
    transform: scale(1.02);
}

.tag-sport {
    background-color: rgba(251, 191, 36, 0.9) !important;
}

.tag-predictme {
    background-color: #ddd !important;
}

/* Title: gradient banner with rounded corners */
.prediction-card h3 {
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    font-family: "Oxanium", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 16px;
    padding: 12px 20px;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
    width: fit-content;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prediction-card h3:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
}

.prediction-card:hover h3 {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(152, 65, 255, 0.4);
}

.prediction-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 8px 0;
}

.prediction-card p strong { color: #22d3ee; }

/* Buttons: center card keeps angled clip-path; first/third use team nameplate style */
.prediction-card .default-btn.match-category {
    margin-top: auto;
    order: 10;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0% 100%, 0 66%, 0 0);
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    height: 35px;
    line-height: 37px;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* First and third cards: team nameplate style (elongated angled hexagon + grid) */
.prediction-card--airdrop .default-btn.match-category,
.prediction-card--status .default-btn.match-category {
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    height: 48px;
    line-height: 48px;
    padding: 0 28px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.prediction-card--airdrop .default-btn.match-category:before,
.prediction-card--status .default-btn.match-category:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.prediction-card .default-btn.match-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(152, 65, 255, 0.5);
}

.pred-card-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
}

.pred-card-footer {
    order: 9;
    margin-top: auto;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-align: center;
    width: 100%;
}

/* Vote bars */
.pred-vote {
    display: flex;
    gap: 10px;
    margin: 14px 0;
}

.pred-vote .vote-yes,
.pred-vote .vote-no {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: transform 0.3s ease;
}

.pred-vote .vote-yes:hover,
.pred-vote .vote-no:hover {
    transform: scale(1.03);
}

.pred-vote .vote-yes { background: rgba(34, 197, 94, 0.4); border: 1px solid rgba(34, 197, 94, 0.6); }
.pred-vote .vote-no { background: rgba(239, 68, 68, 0.4); border: 1px solid rgba(239, 68, 68, 0.6); }

.pred-vote small { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.9); display: block; margin-top: 2px; }

/* Airdrop tabs: team card button style, aligned at bottom */
.pred-airdrop-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 10px;
    order: 10;
}

/* Airdrop tabs: team nameplate style (angled hexagon + grid) */
.airdrop-tab {
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    height: 44px;
    line-height: 44px;
    padding: 0 22px;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.airdrop-tab:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.airdrop-tab:hover {
    transform: translateY(-2px);
}

.airdrop-tab.active {
    box-shadow: 0 0 20px rgba(12, 215, 232, 0.6);
}

.airdrop-tab:not(.active) {
    opacity: 0.7;
}

.airdrop-tab:not(.active):hover {
    opacity: 1;
}

.pred-airdrop-panels {
    order: 11;
}

.pred-airdrop-panels .airdrop-panel {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

.pred-airdrop-panels .airdrop-panel.active { display: inline; }

/*** 4.0 - Match Details ***/

.match-details-header {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    width: 70%;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 120px;
    margin: 0 auto;
    margin-top: -50px;
}

.match-details-header .vs:before,
.match-details-header:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.match-details-header>div {
    display: inline-flex;
    align-items: center;
}

.match-details-header h3 {
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.5px;
    text-align: left;
    margin: 0;
    display: inline-block;
    width: 50%;
    padding-left: 70px;
    z-index: 1;
}

.match-details-header h3 a:hover {
    color: #fff;
}

.match-details-header h3.left-team {
    text-align: right;
    padding-right: 70px;
    padding-left: 0;
}

.match-details-header .vs {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 100px;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.match-details-header .vs h2 {
    margin: 0;
    font-size: 60px;
    font-weight: 600;
}

.match-details-header img {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.match-details-header img.right {
    left: auto;
    right: -60px;
}

.match-details h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

.match-details p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 30px;
    margin-top: -6px;
}

/*** 5.0 - Latest Matches ***/
.latest-matches-lists:not(:last-of-type) {
    margin-bottom: 20px;
}

.latest-matches-list {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    clip-path: polygon(95% 0, 100% 20%, 100% 100%, 0% 100%, 0 66%, 0 0);
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    align-items: center;
    padding: 20px 30px;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.latest-matches-list:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.latest-matches-list:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.latest-matches-list:hover {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
}

.matches-thumb img {
    max-width: 300px;
    border-radius: 5px;
}

.match-category {
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0% 100%, 0 66%, 0 0);
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    height: 35px;
    line-height: 37px;
    padding: 0 20px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
}

.match-category:hover {
    color: #fff;
    transform: translateY(-2px);
}

.latest-match-info h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.match-meta li a {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.watch-info {
    text-align: right;
}

.watch-info a i {
    font-size: 40px;
    margin-right: 5px;
    font-weight: inherit;
}

.watch-info a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.watch-info a:hover {
    color: #9841ff;
}

/*** 6.0 - Watch Live ***/
.watch-live-section--featured {
    padding-top: 60px;
}

.watch-live-section .watch-live-heading h2 span {
    background: linear-gradient(to right, #f90cff, #0cd7e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.watch-live-section .watch-live-heading h3 {
    color: rgba(255, 255, 255, 0.9);
}

.watch-live-section .watch-live-heading p {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
}

.watch-carousel {
    width: 150%;
    margin-left: -25%;
}

.watch-carousel .swiper-slide img {
    border-radius: 3px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
    position: relative;
    margin-bottom: 5px;
    width: 100%;
}

.watch-carousel .swiper-slide-active img {
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.watch-carousel .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
}

.watch-carousel .swiper-slide-active .play-btn {
    visibility: visible;
    opacity: 1;
}

.swiper-nav {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    opacity: 0.7;
}

.swiper-nav:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 450ms cubic-bezier(.4, 0, .2, 1);
}

.swiper-nav.swiper-next:before {
    left: auto;
    right: -5px;
}

.swiper-nav.swiper-next {
    left: auto;
    right: 30px;
}

.swiper-nav:hover {
    opacity: 1;
}

.swiper-nav:hover:before {
    scale: 1.05;
}

/* Hero Watch Carousel */
.hero-section-2 .watch-carousel {
    width: 120%;
    margin-left: -10%;
}

/*** 7.0 - Team ***/
.heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.outside-spacing {
    overflow: hidden;
    padding: 0 13px;
    margin: 0 -20px;
}

.team-carousel {
    position: relative;
}

.team-content {
    position: relative;
    margin-top: -15px;
}

.team-content h3 {
    background: #f90cff;
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    width: 90%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.team-content h3:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.team-content:before {
    background: #f90cff;
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(57% 0%, 100% 0%, 45% 100%, 0% 100%);
    border-radius: 3px;
    content: "";
    position: absolute;
    width: 40px;
    height: 60px;
    right: 5px;
    top: 0;
}

.team-content:after {
    background: #ddd;
    clip-path: polygon(57% 0%, 100% 0%, 45% 100%, 0% 100%);
    border-radius: 3px;
    content: "";
    position: absolute;
    width: 40px;
    height: 60px;
    right: -16px;
    top: 0;
}

.team-content .whte-shape {
    background-color: #fff;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    border-radius: 3px;
    position: absolute;
    width: 60%;
    height: 60px;
    left: -10px;
    top: -10px;
}

.team-content h4 {
    background-color: #ddd;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    color: #0c0c35;
    width: 60%;
    height: 25px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    margin: -10px 0px 0px 20px;
}

.team-content h3 a {
    color: #fff;
    z-index: 1;
}

/*** 7.1 - Team Shape ***/
.team-thumb {
    position: relative;
}

.team-thumb .shape-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: skew(-5deg);
    z-index: -1
}

.team-thumb .shape {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(0% 0%, 80% 0, 100% 10%, 100% 100%, 0 100%);
    width: 150px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    transition: all 450ms cubic-bezier(.4, 0, .2, 1);
    transition: all 0.2s ease-in-out;
}

.team-thumb .shape:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.team-thumb .shape.shape-1 {
    clip-path: polygon(0% 0%, 90% 0, 100% 10%, 100% 100%, 0 100%);
    width: 200px;
    height: 70%;
    left: 20%;
    z-index: 1;
    opacity: 0.8;
}

.team-thumb .shape.shape-2 {
    height: 100%;
    left: 30%;
    opacity: 0.7;
}

.team-thumb .shape.shape-3 {
    height: 90%;
    z-index: 2;
    opacity: 0.4;
    left: 30px;
}

.team-thumb .shape.shape-4 {
    height: 60%;
    left: 15px;
    opacity: 0.6;
}

.team-carousel .swiper-nav {
    left: -5px;
    z-index: 1;
}

.team-carousel .swiper-nav.swiper-next {
    left: auto;
    right: -5px;
}

@media (min-width: 767px) {
    .team-thumb .shape.shape-1 {
        height: 60%;
    }

    .team-thumb .shape.shape-2 {
        height: 90%;
    }

    .team-thumb .shape.shape-3 {
        height: 70%;
    }

    .team-thumb .shape.shape-4 {
        height: 40%;
    }

    .team-item:hover .team-thumb .shape.shape-1 {
        height: 70%;
        transition-delay: 200ms;
    }

    .team-item:hover .team-thumb .shape.shape-2 {
        height: 100%;
        transition-delay: 150ms;
    }

    .team-item:hover .team-thumb .shape.shape-3 {
        height: 90%;
        transition-delay: 100ms;
    }

    .team-item:hover .team-thumb .shape.shape-4 {
        height: 60%;
        transition-delay: 50ms;
    }
}

@media (max-width: 767px) {
    .team-carousel .swiper-slide {
        padding-left: 20px;
    }

    .team-carousel .team-content {
        width: 100%;
    }

    .team-carousel .team-content:before,
    .team-carousel .team-content:after {
        display: none;
    }

    .team-content h3 {
        justify-content: flex-start;
        padding-left: 65px;
    }

    .team-content h4 {
        justify-content: flex-start;
        padding-left: 46px;
    }
}

/*** 7.2 - Team Details ***/
.team-details-info {
    position: relative;
    z-index: 1;
}

.team-details-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 0 40px;
}

.team-details-wrap {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
    height: 120px;
    border-radius: 10px;
    position: relative;
    width: 90%;
    margin: 0 auto;
    margin-top: -60px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.team-details-wrap:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-details-wrap ul li:first-child {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-right: 10px;
}

.team-details-wrap .social-list li a {
    background-color: rgba(12, 12, 53, 0.9);
    border-radius: 50%;
    clip-path: none;
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.team-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-counter .counter-list {
    text-align: center;
    margin: 0;
}

.team-details-wrap ul .counter-list:first-child {
    margin: 0;
}

.team-counter .counter-list .odometer-inside span {
    font-family: 'Oxanium', sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
}

.team-counter .counter-list h4 {
    margin: 0;
    line-height: 1;
}

.team-details-wrap .rating {
    text-align: right;
}

.team-details-wrap .rating li {
    color: rgba(12, 12, 53, 0.9);
}

/*** Partnerships section (team-details style) ***/
.partnerships-section {
    position: relative;
    overflow-x: hidden;
}

/* One continuous horizontal line across full width, through center of banner */
.partnerships-line-full {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    max-width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.4) 0%, rgba(152, 65, 255, 0.9) 15%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.9) 85%, rgba(152, 65, 255, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
    box-sizing: border-box;
}

.partnerships-section .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.partnerships-wrap.team-details-style {
    background: linear-gradient(160deg, #1e2235 0%, #141625 60%, #0f1020 100%);
    border-radius: 18px;
    position: relative;
    width: 90%;
    margin: 0 auto;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 52px 48px;
    min-height: 190px;
}

/* Tech brackets and top-line accent, adapted from standalone partnerships card */
.partnerships-wrap.team-details-style::before,
.partnerships-wrap.team-details-style::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(180, 180, 220, 0.35);
    border-style: solid;
}

.partnerships-wrap.team-details-style::before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0;
}

.partnerships-wrap.team-details-style::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}

.partnerships-bracket {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(180, 180, 220, 0.35);
    border-style: solid;
}

.partnerships-bracket-tr {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
    border-radius: 0 4px 0 0;
}

.partnerships-bracket-bl {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 4px;
}

.partnerships-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(160, 140, 255, 0.4), transparent);
    border-radius: 0 0 4px 4px;
}

.partnerships-label {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.partnerships-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.partner-slot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.about-team-section .section-heading p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/*** 8.0 - Player Details ***/
.player-details .team-details-wrap {
    grid-template-columns: 1fr 1fr 2fr;
}

/* Countdown section – IQF ON-CHAIN MINING LAUNCH: title + counter only */
.countdown-section.team-details-info .team-details-wrap.countdown-wrap {
    height: auto;
    min-height: 160px;
    padding: 36px 52px 32px !important;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "countdown-heading"
        "countdown-counter";
    align-items: center;
    justify-items: center;
}

.countdown-section .countdown-heading{
    grid-area: countdown-heading;
    text-align: center;
    align-self: end;
    padding-bottom: 0;
    margin-top: 0;
}

.countdown-section .countdown-heading h3{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

.countdown-section .countdown-title {
    grid-area: countdown-title;
}

.countdown-section .countdown-counter {
    grid-area: countdown-counter;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.countdown-section .countdown-team h3 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.02em;
}

.countdown-section .countdown-info {
    justify-content: center;
    gap: 2rem;
}

.countdown-section .countdown-info li span {
    font-size: 28px;
}

.player-details .team-details-wrap .social-list {
    text-align: center;
}

.player-team {
    display: flex;
    align-items: center;
}

.player-team img {
    max-width: 80px;
    margin-right: 10px;
}

.player-team h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
}

.player-info li>div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.player-info li .flag {
    max-width: 20px;
}

.player-info li i {
    font-size: 20px;
}

.player-info li span {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-left: 5px;
    margin-top: 2px;
}

.player-info li h4 {
    display: block;
    margin: 0;
}

.player-thumb img {
    border-radius: 5px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

/*** 9.0 - About Section ***/
.about-content .section-heading h2 {
    margin-bottom: 15px;
}

.about-content .section-heading .default-btn {
    margin-top: 25px;
}

.about-img-holder {
    position: relative;
}

.about-img-holder img:not(.character-3) {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-img-holder img.character-2 {
    left: auto;
    right: 0;
}

/* AI Builder section – card layout matching prediction/team style */
.ai-builder-section {
    position: relative;
    overflow: visible;
    background: #0a0a0c;
}

.ai-builder-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(120, 120, 130, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(120, 120, 130, 0.02) 0%, transparent 45%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(100, 100, 110, 0.02) 2px, rgba(100, 100, 110, 0.02) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100, 100, 110, 0.02) 2px, rgba(100, 100, 110, 0.02) 3px);
    background-size: 100% 100%, 100% 100%, 24px 24px, 24px 24px;
}

.ai-builder-section .container {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.ai-builder-card {
    background: #0c0c0e;
    padding: 40px 40px 56px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    animation: ai-builder-card-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    border: 1px solid rgba(80, 80, 90, 0.08);
}

@keyframes ai-builder-card-enter {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ai-builder-card:before {
    background: linear-gradient(90deg, transparent 0%, rgba(100, 100, 110, 0.15) 50%, transparent 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
}

.ai-builder-card:after {
    background-image: repeating-linear-gradient(-45deg, transparent 0%, transparent 1px, rgba(90, 90, 100, 0.03) 1px, rgba(90, 90, 100, 0.03) 2px);
    background-size: 6px 6px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
}

.ai-builder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), 0 0 40px rgba(90, 90, 100, 0.08);
    background: #0e0e11;
    border-color: rgba(90, 90, 100, 0.12);
}

.ai-builder-card:hover .ai-builder-card-shapes .shape {
    animation: ai-builder-shapes-breathe 2.5s ease-in-out infinite;
}

@keyframes ai-builder-shapes-breathe {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.2; }
}

.ai-builder-card-shapes {
    position: absolute;
    left: 55%;
    top: 0;
    width: 45%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ai-builder-card-shapes .shape-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: skew(4deg);
    transform-origin: right bottom;
}

.ai-builder-card-shapes .shape {
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 2px;
    opacity: 0.12;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ai-builder-card-shapes .shape.shape-1 {
    width: 50%;
    height: 70%;
    right: 5%;
}

.ai-builder-card-shapes .shape.shape-2 {
    width: 38%;
    height: 90%;
    right: 15%;
    opacity: 0.08;
}

.ai-builder-card-shapes .shape.shape-3 {
    width: 28%;
    height: 60%;
    right: 25%;
    opacity: 0.06;
}

.ai-builder-card-inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 0;
}

.ai-builder-content {
    min-width: 0;
    padding-right: 8px;
    overflow: visible;
}

.ai-builder-label {
    display: block;
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: ai-builder-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards;
}

.ai-builder-logo-wrap {
    margin-bottom: 10px;
    animation: ai-builder-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

.ai-builder-logo {
    display: block;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: ai-builder-logo-shine 5s ease-in-out infinite;
}

@keyframes ai-builder-logo-shine {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(152, 65, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.4)); }
}

@keyframes ai-builder-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-builder-title {
    font-family: "Oxanium", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 18px 0;
    animation: ai-builder-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s backwards;
}

.ai-builder-title span {
    background: linear-gradient(90deg, #f90cff 0%, #22d3ee 50%, #f90cff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ai-builder-title-gradient 4s linear infinite;
}

@keyframes ai-builder-title-gradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.ai-builder-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 12px 0;
    animation: ai-builder-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ai-builder-desc:nth-of-type(1) { animation-delay: 0.35s; }
.ai-builder-desc:nth-of-type(2) { animation-delay: 0.45s; }

.ai-builder-desc:last-of-type {
    margin-bottom: 24px;
}

.ai-builder-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    position: relative;
    z-index: 20;
}

.ai-builder-btn.match-category {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(152, 65, 255, 0.35); /* match image panel border */
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 24px;
    border-radius: 8px;
    clip-path: none;
    cursor: default;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    animation: ai-builder-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    position: relative;
    z-index: 1;
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
    box-sizing: border-box;
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ai-builder-btn.match-category:nth-child(1) { animation-delay: 0.5s; }
.ai-builder-btn.match-category:nth-child(2) { animation-delay: 0.58s; }
.ai-builder-btn.match-category:nth-child(3) { animation-delay: 0.66s; }
.ai-builder-btn.match-category:nth-child(4) { animation-delay: 0.74s; }

.ai-builder-btn.match-category:hover {
    transform: translateY(-2px) scale(1.01);
    background: rgba(51, 65, 85, 0.95);
    border-color: rgba(171, 85, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.ai-builder-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

@media (max-width: 991px) {
    .ai-builder-card-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ai-builder-visual {
        order: -1;
    }
    .ai-builder-img-show {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .ai-builder-card {
        padding: 28px 24px 36px;
    }
    .ai-builder-title {
        font-size: 22px;
    }
    .ai-builder-btns {
        justify-content: center;
    }
}

.ai-builder-img-show {
    position: relative;
    display: inline-block;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(152, 65, 255, 0.25),
                0 0 60px rgba(34, 211, 238, 0.15),
                inset 0 0 40px rgba(152, 65, 255, 0.08);
    border: 1px solid rgba(152, 65, 255, 0.35);
    background: linear-gradient(135deg, rgba(152, 65, 255, 0.06) 0%, rgba(34, 211, 238, 0.04) 100%);
    animation: ai-builder-glow 4s ease-in-out infinite, ai-builder-float 6s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ai-builder-img-show:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(152, 65, 255, 0.3),
                0 0 90px rgba(34, 211, 238, 0.15);
}

@keyframes ai-builder-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ai-builder-img-show::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(249, 12, 255, 0.4), rgba(34, 211, 238, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes ai-builder-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(152, 65, 255, 0.25), 0 0 60px rgba(34, 211, 238, 0.15), inset 0 0 40px rgba(152, 65, 255, 0.08); }
    50% { box-shadow: 0 0 40px rgba(152, 65, 255, 0.35), 0 0 80px rgba(34, 211, 238, 0.2), inset 0 0 50px rgba(152, 65, 255, 0.1); }
}

.ai-builder-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: hidden;
    border-radius: 8px;
}

.ai-builder-img-wrap .ai-builder-img-side {
    position: relative;
    z-index: 1;
    transform-origin: center center;
    backface-visibility: hidden;
    width: 100%;
    object-fit: contain;
    object-position: center center;
}

.ai-builder-img-wrap .ai-builder-img-front {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.97);
    transform-origin: center center;
    transition: opacity 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.25s cubic-bezier(0.33, 1, 0.68, 1);
    pointer-events: none;
}

.ai-builder-img-wrap .ai-builder-img-front.face-visible {
    transform: scale(1);
}

.ai-builder-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55),
                0 8px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
    filter: brightness(0.95) contrast(1.05);
    transition: box-shadow 0.4s ease, filter 0.4s ease;
}

.ai-builder-img-show:hover .ai-builder-img {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.6),
                0 10px 32px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    filter: brightness(1) contrast(1.08);
}

/*** 10.0 - Promo Section ***/
.promo-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0% 100%, 0 66%, 0 0);
    padding: 40px;
    text-align: center;
    position: relative;
}

.promo-item:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.promo-item:hover:before {
    height: 100%;
    z-index: -1;
}

.promo-item:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.promo-item .promo-icon {
    max-width: 120px;
    margin-bottom: 20px;
}

.promo-item:hover .promo-icon {
    transform: scale(1.05)rotate(10deg);
}

.promo-content h3 {
    font-size: 24px;
    font-weight: 600;
}

.promo-content p {
    margin: 0;
}

/*** 11.0 - Call to Action ***/
.cta-section .section-heading {
    text-align: center;
}

.cta-section .section-heading h3 {
    margin-bottom: 20px;
}

.cta-section .section-heading h2 {
    font-size: 52px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-shadow:
        0 0 5px #9841ff,
        0 0 10px #9841ff,
        0 0 15px #9841ff;
}

/*** 12.0 - Gameplay Section ***/
.gameplay-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.gameplay-card:before {
    background: rgb(12, 12, 53);
    background: linear-gradient(180deg, rgba(12, 12, 53, 0) 0%, rgba(12, 12, 53, 1) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.gameplay-card img {
    border-radius: 3px;
}

.gameplay-card .play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameplay-card .play-btn i {
    font-size: 40px;
}

.gameplay-info {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
}

.gameplay-info .post-meta {
    margin-bottom: 5px;
}

.gameplay-info h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

/*** 13.0 - Testimonial Section ***/
.testimonial-section .carousel-wrap {
    overflow: visible;
}

.testimonial-carousel {
    padding-bottom: 50px;
}

.testimonial-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
    clip-path: polygon(90% 0, 100% 20%, 100% 100%, 0% 100%, 0 66%, 0 0);
    padding: 40px;
    position: relative;
}

.testimonial-item:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.testimonial-item:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial-item .testi-thumb {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-item .testi-thumb img {
    max-width: 80px;
    border-radius: 50%;
    border: 5px solid rgba(152, 65, 255, 0.3);
}

.testimonial-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.testimonial-item h3 span {
    display: block;
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    background: #9841ff;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

/*** 14.0 - Contact Section ***/
.contact-section .section-heading p {
    margin-bottom: 20px;
}

.contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.contact-form-group .form-field .form-control {
    background-color: rgba(12, 12, 53, 0.9);
    padding: 15px;
    border: none;
    color: #fff;
    height: 60px;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

.contact-form-group .form-field.message {
    grid-column-end: span 2;
}

.contact-form-group .form-field.message .form-control {
    height: 150px;
}

#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}

.contact-title {
    margin-bottom: 30px;
}

.contact-title h2 span {
    color: #9841ff;
}

.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-section .contact-details li i {
    background-color: rgba(152, 65, 255, 0.3);
    clip-path: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
    color: #fff;
    font-size: 15px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 2px;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.contact-section .contact-details li i:hover {
    background-color: #9841ff;
    color: #fff;
    transform: translateY(-2px);
}

/*** 15.0 - FAQ Section ***/
.accordion-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    border-radius: 2px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    outline: none;
    box-shadow: none;
}

.accordion-button {
    background-color: rgba(152, 65, 255, 0.3);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 15px;
    border-radius: 2px;
}

.accordion-header {
    line-height: 28px;
}

.accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #9841ff;
}

.accordion-button:not(.collapsed):after {
    background-image: inherit;
    content: "\f067";
    color: #fff;
    transform: inherit;
}

.accordion-button:after {
    background-image: inherit;
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #ddd;
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** 16.0 - Sponsor Section ***/
.sponsor-carousel img {
    opacity: 0.8;
}

.sponsor-carousel .swiper-slide {
    text-align: center;
}

.sponsor-carousel img:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
}

.sponsor-grid .sponsor-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    padding: 20px;
    position: relative;
    border-radius: 2px;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.sponsor-grid .sponsor-item:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sponsor-grid .sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-grid .sponsor-item img {
    opacity: 0.8;
}

.sponsor-grid .sponsor-item:hover img {
    opacity: 1;
}

/*** 17.0 - Footer ***/
.footer-section {
    position: relative;
    padding-top: 100px;
}

/* Footer IQF – professional business: brand, tagline, connect, social, copyright */
.footer-iqf {
    padding-top: 48px;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a12;
}

.footer-iqf-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
    padding-bottom: 32px;
    max-width: 100%;
}

.footer-iqf-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0;
}

.footer-iqf-logo-link {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-iqf-logo-link:hover {
    opacity: 0.92;
    transform: scale(1.02);
}

.footer-iqf-logo {
    display: block;
    max-width: 140px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
}

.footer-iqf-tagline {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    font-family: "Orbitron", "Rajdhani", sans-serif;
}

.footer-iqf-connect {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
}

.footer-iqf-connect-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Orbitron", sans-serif;
}

.footer-iqf-email {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: "Orbitron", "Rajdhani", sans-serif;
}

.footer-iqf-email:hover {
    color: #fff;
}

.footer-iqf-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
}

/* Professional contact / notice buttons – business-appropriate */
.footer-iqf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: "Oxanium", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    height: 44px;
    line-height: 44px;
    padding: 0 22px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-iqf-btn:before {
    display: none;
}

.footer-iqf-btn:hover {
    color: #fff !important;
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-iqf-disclaimer summary.footer-iqf-btn {
    cursor: pointer;
    border: none;
}

.footer-iqf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-iqf-link:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-iqf-link i,
.footer-iqf-btn i {
    font-size: 18px;
}

.footer-iqf-disclaimer {
    margin: 0;
}

.footer-iqf-disclaimer summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
}

.footer-iqf-disclaimer summary::-webkit-details-marker {
    display: none;
}

.footer-iqf-disclaimer-text {
    margin: 12px 0 0 0;
    padding: 12px 16px;
    max-width: 560px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-iqf-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-iqf-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-iqf-social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: none;
}

.footer-iqf-social-link i {
    font-size: 18px;
}

.footer-iqf-social-link .footer-x-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-item .brand {
    display: block;
    margin-bottom: 20px;
}

.footer-item .social-list {
    margin-top: 25px;
}

.social-list li {
    display: inline-block;
}

.social-list li:not(:last-of-type) {
    margin-right: 5px;
}

.social-list li a {
    background-color: rgba(152, 65, 255, 0.3);
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
}

.social-list li a:hover {
    background-color: #9841ff;
    color: #fff;
    transform: translateY(-2px);
}

/*** 17.1 - Subscribe Form ***/
.subscribe-wrap {
    position: relative;
}

.subscribe-wrap .subscribe-heading h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.subscribe-wrap .subscribe-heading p {
    margin: 0;
}

.subscribe-form {
    position: relative;
    z-index: 1;
}

.subscribe-form .form-control {
    background-color: rgba(12, 12, 53, 0.9);
    color: #fff;
    height: 60px;
    border-radius: 2px;
    outline: none;
    border: 2px solid rgba(152, 65, 255, 0.3);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

.subscribe-form .submit {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    display: inline-block;
    width: 160px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    text-align: center;
    border-radius: 2px;
    font-family: 'Oxanium', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    margin-top: 15px;
}

.subscribe-form .submit:hover {
    transform: translateY(-2px);
}

#subscribe-result {
    display: none;
}

#subscribe-result.subs-result {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    padding: 10px;
    margin-top: 15px;
}

.subscription-error {
    color: #ff0000;
}

/*** 17.2 - Contact ***/
.footer-links li:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer-contact li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer-contact li span {
    display: block;
    color: #9841ff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .footer-list {
        margin-left: 50px;
    }
}

/*** 17.3 - Copyright ***/
.footer-iqf .copyright-wrap {
    margin-top: 0;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #07070e;
}

.copyright-wrap {
    margin-top: 80px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.copyright-wrap:before {
    background-color: rgb(12 12 53 / 80%);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
}

.copyright-wrap p,
.copyright-text {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.footer-iqf .copyright-wrap .copyright-text {
    color: rgba(255, 255, 255, 0.4);
}