/*
 * Fortuna World Championship 2026 Stylesheet
 * Responsive Landing Page CSS
 */

/* ==========================================================================
   1. Design System & Variables
   ========================================================================== */
:root {
    --bg-dark: #0d0b2e;
    --card-bg: #1a1744;
    --fortuna-yellow: #ffd200;
    --fortuna-yellow-hover: #e0b800;
    --white: #ffffff;
    --text-muted: #b0aec6;
    --accent-purple: #4a0e8f;
    --accent-pink: #d11270;
    
    /* Font Families */
    --font-heading: 'Degular Display', 'Arial Black', sans-serif;
    --font-body: 'PP Object Sans', -apple-system, sans-serif;
}

/* ==========================================================================
   2. Font Declarations
   ========================================================================== */
@font-face {
    font-family: 'PP Object Sans';
    src: url('../fonts/PPObjectSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Object Sans';
    src: url('../fonts/PPObjectSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Object Sans';
    src: url('../fonts/PPObjectSans-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Degular Display';
    src: url('../fonts/DegularDisplay-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Degular Display';
    src: url('../fonts/DegularDisplay-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   3. Reset & Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Base Wrapper & Container */
.wc-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/background - web.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.wc-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background-image: url('../images/Flag - Wave.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.wc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   4. Header Component
   ========================================================================== */
.wc-header {
    background-color: var(--fortuna-yellow);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.wc-logo {
    height: 35px;
    transition: transform 0.3s ease;
}

.wc-logo:hover {
    transform: scale(1.05);
}

.wc-header-btn {
    border: 1.5px solid #000000;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
    line-height: 1;
    display: inline-block;
}

.wc-header-btn:hover {
    background-color: #000000;
    color: var(--fortuna-yellow);
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.wc-hero {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
}

.wc-hero-trophy {
    position: absolute;
    left: -50px;
    top: 40px;
    max-width: 280px;
    animation: floatTrophy 6s ease-in-out infinite;
    display: none; /* Shown on larger screens */
}

.wc-hero-ball {
    position: absolute;
    right: -40px;
    top: 100px;
    max-width: 130px;
    animation: rotateBall 20s linear infinite;
    display: none;
}

@keyframes floatTrophy {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes rotateBall {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wc-hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.wc-hero-title span {
    color: var(--fortuna-yellow);
}

.wc-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fortuna-yellow);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

/* ==========================================================================
   6. How It Works Steps
   ========================================================================== */
.wc-steps-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.wc-step-card {
    flex: 1;
    background-color: #0c0a24;
    border: 2px solid var(--fortuna-yellow);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 180px;
}

#wc-step-card-1 {
    /* Background images removed as they contain baked-in text and badges */
}

#wc-step-card-2 {
    /* Background images removed as they contain baked-in text and badges */
}

#wc-step-card-3 {
    /* Background images removed as they contain baked-in text and badges */
}

.wc-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.15);
}

.wc-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-step-number-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 30%, #ffe680 0%, #ffd200 40%, #c9a200 75%, #a68500 100%);
    border: 2px solid #e6be00;
    color: #5a4000;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.wc-step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--fortuna-yellow);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.wc-step-desc {
    font-size: 0.8rem;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

/* Floating 3D Coins */
.wc-floating-coin {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.wc-coin-left {
    left: -20px;
    bottom: 20px;
    width: 75px;
    height: auto;
    transform: rotate(-15deg);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    animation: floatCoinLeft 5s ease-in-out infinite;
}

.wc-coin-right {
    right: -70px;
    bottom: -30px;
    width: 260px;
    height: auto;
    transform: rotate(20deg);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    animation: floatCoinRight 5.5s ease-in-out infinite;
}

@keyframes floatCoinLeft {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-8px) rotate(-18deg); }
}

@keyframes floatCoinRight {
    0%, 100% { transform: translateY(0) rotate(20deg); }
    50% { transform: translateY(-10px) rotate(23deg); }
}

.wc-steps-divider {
    display: flex;
    justify-content: center;
    margin: 30px 0 50px;
}

.wc-steps-divider img {
    height: 25px;
}

/* ==========================================================================
   7. Welcome Bonus Cards Grid (Instance 1)
   ========================================================================== */
.wc-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.wc-bonus-card {
    background-color: #08061f;
    border: 1.5px solid var(--fortuna-yellow);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wc-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 210, 0, 0.2);
}

.wc-bonus-header {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1.5px solid var(--fortuna-yellow);
}

.wc-bonus-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-bonus-content {
    padding: 24px 20px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: center;
}

.wc-bonus-bullets {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc-bonus-bullet {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

.wc-bonus-bullet span {
    color: var(--fortuna-yellow);
    font-weight: 700;
}

.wc-btn-purple {
    background-color: #4e12e6;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    display: inline-block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(78, 18, 230, 0.4);
}

.wc-btn-purple:hover {
    background-color: #3b0bb3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 18, 230, 0.6);
}

.wc-btn-purple:active {
    transform: translateY(0);
}

/* ==========================================================================
   8. Benefits Grid (Instance 1)
   ========================================================================== */
.wc-benefits {
    padding-bottom: 80px;
}

.wc-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.wc-section-title span {
    color: var(--fortuna-yellow);
}

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

.wc-benefit-card-empty {
    background-color: var(--fortuna-yellow);
    border-radius: 16px;
    height: 180px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.wc-benefit-card-empty:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   9. Sport Selection Layout (Instance 2)
   ========================================================================== */
/* ==========================================================================
   9. Sport Selection Layout (Instance 2 - Stacked Mockup 1)
   ========================================================================== */
.wc-sport-banner-container {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px;
    container-type: inline-size;
    container-name: sportbanner;
    background-color: transparent;
    border: 2px solid var(--fortuna-yellow);
    padding: 0;
    border-radius: 26px;
    overflow: hidden;
}

.wc-sport-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    clip-path: none;
    transform: scale(1.01);
    transform-origin: center center;
    max-width: none;
}

.wc-sbc-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 53.5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4cqi 0 0;
    box-sizing: border-box;
    text-align: left;
}

.wc-sbc-title {
    font-family: var(--font-heading);
    font-size: 2.8cqi; /* Further reduced to prevent two-line wrapping from taking too much height */
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1cqi;
    text-align: center; /* Ensure it is explicitly centered in the content box */
    width: 100%;
}

.wc-sbc-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1.1cqi; /* Reduced */
    text-align: left;
    background-color: transparent;
    border-radius: 1cqi;
}

.wc-sbc-table th {
    color: var(--fortuna-yellow);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8cqi 1.2cqi; /* Reduced */
    background-color: #12103a;
}

.wc-sbc-table th:first-child { border-top-left-radius: 2cqi; border-bottom-left-radius: 2cqi; }
.wc-sbc-table th:last-child { border-top-right-radius: 2cqi; border-bottom-right-radius: 2cqi; }

.wc-sbc-table td {
    padding: 0.8cqi 1.2cqi; /* Reduced */
    color: #fff;
    vertical-align: middle;
    line-height: 1.3;
}

.wc-sbc-row-purple td {
    background-color: var(--accent-purple);
}
.wc-sbc-row-purple td:first-child { border-top-left-radius: 1cqi; border-bottom-left-radius: 1cqi; }
.wc-sbc-row-purple td:last-child { border-top-right-radius: 1cqi; border-bottom-right-radius: 1cqi; }

.wc-sbc-yellow-text {
    color: var(--fortuna-yellow) !important;
    font-weight: bold;
}

.wc-sbc-extra-box {
    border: 0.2cqi solid var(--fortuna-yellow);
    border-radius: 1.5cqi;
    padding: 0.8cqi 1.2cqi; /* Reduced */
    margin-top: 1cqi; /* Reduced */
    display: flex;
    align-items: center;
    gap: 1.2cqi;
    background: transparent;
}

.wc-sbc-badge {
    background-color: #5d00ff;
    color: var(--fortuna-yellow);
    font-weight: 900;
    padding: 1cqi 1.8cqi;
    border-radius: 1cqi;
    font-size: 1.8cqi;
    text-transform: uppercase;
}

.wc-sbc-extra-text {
    font-size: 1.6cqi;
    color: #fff;
    line-height: 1.3;
}

.wc-sbc-extra-text strong {
    color: var(--fortuna-yellow);
    font-size: 2cqi;
    display: block;
    margin-bottom: 0.5cqi;
}

.wc-conditions-card-full {
    background-color: #0c0a24;
    border: 2px solid var(--fortuna-yellow);
    border-radius: 16px;
    padding: 30px;
    margin: 0 auto 40px;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wc-conditions-card-title {
    color: var(--fortuna-yellow);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

.wc-conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wc-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.wc-condition-item:last-child {
    margin-bottom: 0;
}

.wc-condition-bullet {
    color: var(--fortuna-yellow);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.wc-condition-text {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.4;
}

.wc-players-section-full {
    background-color: #12103a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin: 0 auto 80px;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.wc-players-block-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.wc-players-block-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.wc-player-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.wc-player-card {
    flex: 0 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wc-player-card:hover {
    transform: translateY(-8px);
    border-color: var(--fortuna-yellow);
    box-shadow: 0 10px 25px rgba(255, 210, 0, 0.15);
}

.wc-player-kit-container {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.wc-player-kit {
    max-height: 120px;
    transition: transform 0.3s ease;
}

.wc-player-card:hover .wc-player-kit {
    transform: scale(1.1);
}

.wc-player-country {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fortuna-yellow);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wc-player-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 5px;
}

/* ==========================================================================
   10. Footer Component
   ========================================================================== */
.wc-footer {
    background-color: #060517;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
}

.wc-footer-logo {
    height: 30px;
    width: 226px;
    margin-bottom: 25px;
    /* Exact #ffd200 via mask: logo shape filled with header-yellow */
    background-color: var(--fortuna-yellow);
    -webkit-mask-image: url('../images/logo.png');
    mask-image: url('../images/logo.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-block;
}

.wc-footer-logo-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: inline-block;
    object-fit: contain;
}

.wc-footer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.wc-footer-legal-img {
    height: 35px;
    width: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
}

/* ==========================================================================
   11. Responsive Breakpoints
   ========================================================================== */
@media (min-width: 992px) {
    .wc-hero-trophy,
    .wc-hero-ball {
        display: block;
    }
}

@media (max-width: 1199px) {
    .wc-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .wc-player-card {
        flex: 0 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .wc-conditions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wc-players-section-full {
        padding: 30px 20px;
    }
    
    .wc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .wc-hero-title {
        font-size: 2.4rem;
    }

    .wc-steps-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .wc-hero {
        padding: 40px 0 20px;
    }
    
    /* Mobile: Header logo smaller */
    .wc-logo {
        height: 26px;
    }
    
    .wc-hero-title {
        font-size: 2.4rem;
    }
    
    .wc-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Mobile: Show trophy and ball, scaled down and positioned nicely */
    .wc-hero-trophy,
    .wc-hero-ball {
        display: block;
    }
    
    .wc-hero-trophy {
        max-width: 100px;
        left: -10px;
        top: 10px;
    }
    
    .wc-hero-ball {
        max-width: 65px;
        right: -5px;
        top: 30px;
    }
    
    .wc-bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .wc-bonus-header {
        height: auto;
    }

    .wc-bonus-header img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .wc-bonus-content {
        padding: 20px;
    }
    
    .wc-bonus-title {
        font-size: 1.8rem;
    }
    
    .wc-section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    /* Mobile: Footer logo resized for aspect ratio (4x) */
    .wc-footer-logo-img {
        height: 120px;
        max-width: 220px;
    }
    
    /* Mobile: Footer legal image responsive */
    .wc-footer-legal-img {
        height: 25px;
    }
    
    /* Mobile: "Bonusul tau de Sport" bigger */
    #wc-main-sport .wc-hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 479px) {
    .wc-player-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .wc-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .wc-hero-title {
        font-size: 2rem;
    }
    
    .wc-step-card {
        padding: 15px;
    }
    
    .wc-step-title {
        font-size: 1.1rem;
    }
    
    /* Even smaller header logo on very small screens */
    .wc-logo {
        height: 22px;
    }
    
    .wc-hero-trophy {
        max-width: 75px;
        left: -5px;
    }
    
    .wc-hero-ball {
        max-width: 50px;
        right: 0;
    }
    
    /* Mobile 479: Footer logo resized for aspect ratio (4x) */
    .wc-footer-logo-img {
        height: 100px;
        max-width: 180px;
    }
    
    /* "Bonusul tau de Sport" still bigger than default on small screens */
    #wc-main-sport .wc-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    /* Specific Page Banner Mobile Stacking */
    .wc-sport-banner-container {
        display: flex;
        flex-direction: column;
        /* Inherit the beautiful flush yellow border, transparent background, and radius from desktop! */
    }
    .wc-sport-banner-img {
        width: 100%;
        aspect-ratio: 1 / 1; /* Make it slightly taller to give wiggle room for horizontal centering */
        height: auto;
        display: block;
        border-radius: 0;
        object-fit: cover;
        object-position: -15px center; /* Shift left to perfectly center the text, while hiding the dark strip */
        max-width: none;
    }
    .wc-sbc-content {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px 20px;
        background-color: #0c0a24; /* Dark background matching desktop - NOT yellow */
        border-radius: 0;
        box-sizing: border-box;
        align-items: center;
    }
    
    /* Ensure mobile bonus card table area doesn't get yellow background */
    .wc-sport-banner-container {
        background-color: #0c0a24;
    }
    .wc-sbc-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
    }
    
    /* Table to Stacked Cards */
    .wc-sbc-table {
        font-size: 1rem;
        border-radius: 0;
        background: transparent;
        display: block;
    }
    .wc-sbc-table thead {
        display: none; /* Hide headers on mobile */
    }
    .wc-sbc-table tbody, .wc-sbc-table tfoot {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .wc-sbc-table tr {
        display: flex;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 0;
    }
    .wc-sbc-table tfoot tr {
        background-color: var(--accent-purple);
    }
    .wc-sbc-row-purple td {
        background-color: transparent;
    }
    .wc-sbc-table td {
        display: block;
        padding: 8px 0;
        text-align: center;
        border: none !important;
        border-radius: 0 !important;
    }
    .wc-sbc-table td:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 8px;
        padding-bottom: 15px;
    }

    .wc-sbc-extra-box {
        padding: 20px;
        border-width: 2px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-top: 25px;
    }
    .wc-sbc-badge {
        font-size: 1rem;
        padding: 6px 16px;
        border-radius: 8px;
        display: inline-block;
    }
    .wc-sbc-extra-text {
        font-size: 0.95rem;
    }
    .wc-sbc-extra-text strong {
        font-size: 1.15rem;
    }
}
