/* Series Hero Module Styles */
/* A prominent series module with hero image and player standing */

.series-hero-module {
    margin: 1.5rem 0;
}

/* Full-width banner variant (no card) */
.series-hero-module--full-width {
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

/* Card variant - contained in a bordered card */
.series-hero-module--card {
    margin: 0;
    width: 100%;
}

.series-hero-module--card .series-hero-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.series-hero-module--card .series-hero-content {
    min-height: 200px;
    padding: 1.25rem;
}

.series-hero-module--card .series-hero-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.series-hero-module--card .series-highlight-label {
    font-size: 0.8rem;
}

.series-hero-module--card .series-hero-standing {
    padding: 0.5rem 0.75rem;
    min-width: 80px;
}

.series-hero-module--card .standing-position {
    font-size: 1.25rem;
}

.series-hero-module--card .standing-division,
.series-hero-module--card .standing-points {
    font-size: 0.65rem;
}

.series-hero-module--card .series-hero-tagline,
.series-hero-module--card .series-hero-flippy {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
}

.series-hero-module--card .series-hero-footer {
    gap: 0.75rem;
}

.series-hero-module--card .series-hero-actions {
    gap: 0.5rem;
}

.series-hero-module--card .series-hero-actions .btn-theme-base {
    min-height: 36px;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
}

.series-hero-module--card .super-ace-compact {
    padding: 0.25rem 0.5rem;
}

.series-hero-module--card .super-ace-compact__icon {
    height: 40px;
}

.series-hero-module--card .super-ace-compact__cta {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
}

.series-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 0;
    box-shadow: none;
}

/* Legacy card style (kept for other uses) */
.series-hero-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Background Image Layer */
.series-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.series-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.series-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Content Layer */
.series-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

/* Full-width banner gets container-like padding */
.series-hero-banner .series-hero-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header with Title and Standing */
.series-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.series-hero-title-section {
    flex: 1;
}

.series-featured-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

.series-highlight-label {
    font-weight: 400;
    opacity: 0.85;
}

.series-hero-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.series-upcoming-badge {
    display: inline-flex;
    align-items: center;
    background: var(--league-primary, #6366f1);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
}

/* Player Standing Badge */
.series-hero-standing {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 100px;
}

.standing-position {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--league-primary, #6366f1);
    line-height: 1;
}

.standing-details-mini {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: 0.25rem;
}

.standing-division {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--theme-text-secondary, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.standing-points {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--theme-text-primary, #1e293b);
}

/* Tagline and Description */
.series-hero-tagline {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.series-hero-tagline .flippy-says-simple__label {
    color: rgba(255, 255, 255, 0.9);
}

.series-hero-tagline .flippy-says-simple__message {
    color: rgba(255, 255, 255, 0.95);
}

.series-hero-description {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* Flippy Says styling within hero */
.series-hero-flippy {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.series-hero-flippy .flippy-says-simple__label {
    color: rgba(255, 255, 255, 0.9);
}

.series-hero-flippy .flippy-says-simple__message {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Footer: Actions + Super Ace side by side */
.series-hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    flex-wrap: wrap;
}

/* Action Buttons */
.series-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Compact Super Ace Widget */
.super-ace-compact {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 180, 0, 0.15));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 2rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 180, 0, 0.2),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.super-ace-compact:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 180, 0, 0.25));
    border-color: rgba(255, 215, 0, 0.6);
    color: white;
    transform: translateY(-1px);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 180, 0, 0.3),
        inset 0 0 15px rgba(255, 215, 0, 0.15);
}

.super-ace-compact__icon {
    height: 56px;
    width: auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    object-fit: contain;
}

.super-ace-compact__text {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.super-ace-compact__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    background: var(--flipt-primary, #00a69c);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.super-ace-compact__cta i {
    font-size: 0.7rem;
}

.series-hero-actions .btn-theme-base {
    min-height: 44px;
    padding: 0.625rem 1.25rem;
}

.series-hero-actions .btn-theme-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.series-hero-actions .btn-theme-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .series-hero-module {
        margin-top: 0.2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .series-hero-module--full-width {
        margin: 0 !important;
    }

    .series-hero-card,
    .series-hero-banner {
        min-height: auto;
    }

    .series-hero-content {
        padding: 0.875rem 0.75rem 1rem 0.75rem;
        min-height: auto;
    }

    .series-hero-banner .series-hero-content {
        padding: 1rem;
    }

    .series-hero-header {
        flex-direction: column;
        margin-bottom: 0.5rem;
    }

    .series-hero-standing {
        align-self: flex-start;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .standing-position {
        font-size: 1.5rem;
    }

    .standing-details-mini {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0;
    }

    /* More prominent title on mobile */
    .series-hero-name {
        font-size: 1.75rem;
        margin-bottom: 0;
    }

    /* Compact Flippy Says box on mobile - stacked layout */
    .series-hero-tagline {
        font-size: 0.8125rem;
        padding: 0.375rem 0.25rem;
        margin: 0.375rem 0 0.625rem 0;
        max-width: 100%;
        border-radius: 0.5rem;
        line-height: 1.35;
        /* Stack: avatar+label on top, message below full width */
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1875rem;
    }

    /* Avatar stays inline with label */
    .series-hero-tagline .flippy-says-simple__avatar {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        position: absolute;
        top: 0.375rem;
    }

    /* Label row with avatar inline */
    .series-hero-tagline .flippy-says-simple__label {
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.375rem;
        margin-bottom: 0;
        padding-left: 1.625rem;
    }

    .series-hero-tagline .flippy-says-simple__content {
        gap: 0.125rem;
        position: relative;
    }

    /* Message: full width */
    .series-hero-tagline .flippy-says-simple__message {
        font-size: 0.8125rem;
        line-height: 1.35;
        padding-left: 0;
    }

    /* Footer: stack on mobile */
    .series-hero-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    /* Half-width buttons side by side */
    .series-hero-actions {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0;
    }

    .series-hero-actions .btn-theme-base {
        flex: 1;
        justify-content: center;
        min-height: 40px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    /* Compact Super Ace on mobile */
    .super-ace-compact {
        padding: 0.3rem 0.6rem;
        gap: 0.4rem;
        justify-content: center;
    }

    .super-ace-compact__icon {
        height: 44px;
        width: auto;
    }

    .super-ace-compact__text {
        font-size: 0.8rem;
    }

    .super-ace-compact__cta {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .series-hero-module {
    /* The module already has dark overlay on image, minimal changes needed */
}

[data-bs-theme="dark"] .series-hero-standing {
    background: rgba(30, 41, 59, 0.95);
}

[data-bs-theme="dark"] .standing-position {
    color: var(--league-primary, #818cf8);
}

[data-bs-theme="dark"] .standing-division {
    color: var(--theme-text-secondary, #94a3b8);
}

[data-bs-theme="dark"] .standing-points {
    color: var(--theme-text-primary, #e2e8f0);
}

[data-bs-theme="dark"] .series-hero-actions .btn-theme-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme="dark"] .series-hero-actions .btn-theme-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* =============================================================================
   Super Ace Info Modal V2 - Premium Jackpot Design
   ============================================================================= */

/* Custom font for jackpot amount */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Barlow:wght@400;500;600&display=swap');

.super-ace-modal-v2 {
    --sa-gold: #ffd700;
    --sa-gold-dark: #d4a900;
    --sa-gold-light: #ffe44d;
    --sa-black: #0a0a0a;
    --sa-dark: #121212;
    --sa-dark-surface: #1a1a1a;
    --sa-text: #e8e8e8;
    --sa-text-muted: #888888;

    background: var(--sa-dark);
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 215, 0, 0.15),
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(255, 215, 0, 0.1);
}

/* Close Button */
.super-ace-modal-v2__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--sa-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.super-ace-modal-v2__close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--sa-gold);
    color: var(--sa-gold);
    transform: rotate(90deg);
}

/* Hero Section */
.super-ace-modal-v2__hero {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--sa-black) 0%, var(--sa-dark) 100%);
    overflow: hidden;
}

/* Animated glow effect */
.super-ace-modal-v2__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: superAceGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes superAceGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Badge */
.super-ace-modal-v2__badge-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.super-ace-modal-v2__badge {
    height: 96px;
    width: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2);
    animation: superAceBadgeFloat 3s ease-in-out infinite;
}

@keyframes superAceBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Jackpot Display */
.super-ace-modal-v2__jackpot {
    position: relative;
    z-index: 1;
}

.super-ace-modal-v2__jackpot-label {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sa-gold);
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    padding: 0.35rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.super-ace-modal-v2__amount {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, var(--sa-gold-light) 0%, var(--sa-gold) 50%, var(--sa-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.3);
    animation: superAceAmountPulse 2s ease-in-out infinite;
}

.super-ace-modal-v2__currency {
    font-size: 2.5rem;
    vertical-align: top;
    margin-right: 0.1em;
}

@keyframes superAceAmountPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15);
    }
}

/* Requirements */
.super-ace-modal-v2__requirements {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.super-ace-modal-v2__req-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sa-text-muted);
}

.super-ace-modal-v2__req-item i {
    font-size: 0.9rem;
    color: var(--sa-text-muted);
}

.super-ace-modal-v2__req-item--highlight {
    color: var(--sa-gold);
    font-weight: 600;
}

.super-ace-modal-v2__req-item--highlight i {
    color: var(--sa-gold);
}

.super-ace-modal-v2__req-divider {
    color: var(--sa-text-muted);
    font-weight: 300;
    font-size: 1rem;
    opacity: 0.5;
}

/* Body */
.super-ace-modal-v2__body {
    padding: 1.5rem;
    background: var(--sa-dark);
}

/* Section Headers */
.super-ace-modal-v2__section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sa-gold);
    margin-bottom: 1rem;
}

.super-ace-modal-v2__section-header i {
    font-size: 0.85rem;
}

/* Winners Section */
.super-ace-modal-v2__winners-section {
    margin-bottom: 1.5rem;
}

.super-ace-modal-v2__winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

/* Winner Card */
.super-ace-winner-card {
    background: var(--sa-dark-surface);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.super-ace-winner-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.super-ace-winner-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--sa-black);
}

.super-ace-winner-card__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.super-ace-winner-card:hover .super-ace-winner-card__thumbnail {
    transform: scale(1.05);
}

.super-ace-winner-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sa-dark-surface) 0%, var(--sa-black) 100%);
    color: var(--sa-gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

.super-ace-winner-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sa-gold);
    border-radius: 50%;
    color: var(--sa-black);
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.super-ace-winner-card__play i {
    margin-left: 2px;
}

.super-ace-winner-card:hover .super-ace-winner-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.super-ace-winner-card__amount-badge {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--sa-gold);
    border-radius: 0.25rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sa-gold);
}

.super-ace-winner-card__info {
    padding: 0.75rem;
}

.super-ace-winner-card__name {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sa-text);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.super-ace-winner-card__meta {
    font-size: 0.7rem;
    color: var(--sa-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.super-ace-winner-card__date {
    font-size: 0.65rem;
    color: var(--sa-text-muted);
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Opportunities Section */
.super-ace-modal-v2__opportunities-section {
    margin-bottom: 0.5rem;
}

.super-ace-modal-v2__opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Opportunity Card */
.super-ace-opp-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: var(--sa-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.super-ace-opp-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    text-decoration: none;
}

.super-ace-opp-card__hole {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sa-gold) 0%, var(--sa-gold-dark) 100%);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.super-ace-opp-card__hole-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sa-black);
}

.super-ace-opp-card__details {
    flex: 1;
    min-width: 0;
}

.super-ace-opp-card__league {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sa-text);
    margin-bottom: 0.125rem;
}

.super-ace-opp-card__course {
    font-size: 0.75rem;
    color: var(--sa-text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.super-ace-opp-card__course i {
    font-size: 0.65rem;
    color: var(--sa-gold);
    opacity: 0.7;
}

.super-ace-opp-card__date {
    font-size: 0.7rem;
    color: var(--sa-text-muted);
    opacity: 0.7;
    margin-top: 0.25rem;
}

.super-ace-opp-card__action {
    flex-shrink: 0;
}

.super-ace-opp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    background: transparent;
    border: 1px solid var(--sa-gold);
    border-radius: 2rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sa-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.super-ace-opp-card:hover .super-ace-opp-card__cta {
    background: var(--sa-gold);
    color: var(--sa-black);
}

.super-ace-opp-card__cta i {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.super-ace-opp-card:hover .super-ace-opp-card__cta i {
    transform: translateX(2px);
}

/* Footer */
.super-ace-modal-v2__footer {
    padding: 1rem 1.5rem;
    background: var(--sa-black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.super-ace-modal-v2__history-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sa-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.super-ace-modal-v2__history-link:hover {
    color: var(--sa-gold);
    text-decoration: none;
}

.super-ace-modal-v2__history-link i {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .super-ace-modal-v2__hero {
        padding: 2rem 1.25rem 1.5rem;
    }

    .super-ace-modal-v2__badge {
        height: 72px;
    }

    .super-ace-modal-v2__amount {
        font-size: 3rem;
    }

    .super-ace-modal-v2__currency {
        font-size: 1.75rem;
    }

    .super-ace-modal-v2__requirements {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .super-ace-modal-v2__req-divider {
        display: none;
    }

    .super-ace-modal-v2__body {
        padding: 1.25rem 1rem;
    }

    .super-ace-modal-v2__winners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .super-ace-opp-card {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .super-ace-opp-card__action {
        width: 100%;
    }

    .super-ace-opp-card__cta {
        width: 100%;
        justify-content: center;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .super-ace-modal-v2__glow,
    .super-ace-modal-v2__badge,
    .super-ace-modal-v2__amount {
        animation: none;
    }

    .super-ace-winner-card__thumbnail,
    .super-ace-winner-card__play,
    .super-ace-opp-card__cta i {
        transition: none;
    }
}
