/* Home Page Conversion-Focused Styles */

/* ==========================================
   Hero Sections - Conversion Optimized
   ========================================== */

.hero-director-focused,
.hero-player-focused {
    background: var(--theme-bg-primary);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-director-focused::before,
.hero-player-focused::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--flipt-primary, var(--theme-primary)) 0%, var(--flipt-secondary, var(--theme-secondary)) 100%);
    opacity: 0.03;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Brand Badge */
.brand-badge {
    display: inline-flex;
    align-items: center;
    background: var(--theme-surface-1);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--theme-shadow);
    border: 1px solid var(--theme-border-color);
}

.flipt-logo {
    height: 2rem;
    width: auto;
    display: block;
    color: var(--flipt-primary);
    transition: color 0.3s ease;
}

[data-bs-theme="dark"] .flipt-logo {
    color: var(--flipt-white);
}

/* Hero Typography */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--theme-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--theme-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Value Props (Director-focused) */
.value-props {
    margin-bottom: 3rem;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--theme-surface-1);
    border-radius: 1rem;
    border: 1px solid var(--theme-border-color);
    transition: all 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow);
    border-color: var(--theme-accent);
}

.value-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--theme-accent);
    color: var(--theme-bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.value-text h4 {
    color: var(--theme-text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-text p {
    color: var(--theme-text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Feature Highlights (Player-focused) */
.feature-highlights {
    margin-bottom: 3rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--theme-surface-1);
    border-radius: 0.75rem;
    border: 1px solid var(--theme-border-color);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: var(--theme-surface-2);
    border-color: var(--theme-accent);
}

.feature-highlight .feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--theme-accent);
    color: var(--theme-bg-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-highlight .feature-text strong {
    color: var(--theme-text-primary);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-highlight .feature-text p {
    color: var(--theme-text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   Feature Pills (2026 Refresh)
   Horizontal gradient-bordered pills replacing card layout
   ========================================== */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 999px;
    background:
        linear-gradient(var(--theme-bg-primary), var(--theme-bg-primary)) padding-box,
        linear-gradient(135deg, var(--flipt-primary, #00a69c), var(--flipt-secondary, #0068ba)) border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 166, 156, 0.15);
}

.feature-pill__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--flipt-primary, #00a69c), var(--flipt-secondary, #0068ba));
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-pill__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--theme-text-primary);
}

/* Dark mode adjustments */
[data-bs-theme="dark"] .feature-pill {
    background:
        linear-gradient(var(--theme-surface-1, #1e293b), var(--theme-surface-1, #1e293b)) padding-box,
        linear-gradient(135deg, var(--flipt-primary-dark, #00b8a9), var(--flipt-secondary-dark, #1e7bc9)) border-box;
}

[data-bs-theme="dark"] .feature-pill:hover {
    box-shadow: 0 8px 24px rgba(0, 184, 169, 0.2);
}

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

/* Responsive: Stack on mobile */
@media (max-width: 767px) {
    .feature-pills {
        gap: 0.5rem;
    }

    .feature-pill {
        padding: 0.55rem 1rem;
    }

    .feature-pill__icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .feature-pill__text {
        font-size: 0.8rem;
    }
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-icon {
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Hero Overlays */
.hero-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
}

.stat-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stats-grid .stat-item {
    text-align: center;
}

.stats-grid .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--flipt-primary, #00a69c);
}

.stats-grid .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Community Proof */
.community-proof {
    background: var(--theme-surface-1);
    padding: 2rem 0;
    border-top: 1px solid var(--theme-border-color);
}

.social-proof {
    text-align: center;
}

.social-proof-text {
    color: var(--theme-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.course-contribution-callout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--theme-accent);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
}

/* League Benefits Section */
.league-benefits {
    background: var(--theme-bg-primary);
    padding: 5rem 0;
}

.section-title {
    color: var(--theme-text-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--theme-text-secondary);
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--theme-surface-1);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--theme-border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--theme-shadow);
    border-color: var(--theme-accent);
}

.benefit-card .benefit-icon {
    width: 4rem;
    height: 4rem;
    background: var(--theme-accent);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h4 {
    color: var(--theme-text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--theme-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Marketing Metrics Widget Integration */
.platform-stats-bar {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--theme-surface-1);
    border-radius: 1rem;
    border: 1px solid var(--theme-border-color);
}

/* Widen cards when only 1-2 results */
@media (min-width: 992px) {
    /* Single card - center and widen */
    #upcoming-leagues .row > .col:only-child {
        flex: 0 0 50%;
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Exactly 2 cards - each take half width */
    #upcoming-leagues .row > .col:first-child:nth-last-child(2),
    #upcoming-leagues .row > .col:first-child:nth-last-child(2) ~ .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-director-focused,
    .hero-player-focused {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .cta-section {
        justify-content: center;
    }

    .value-prop,
    .feature-highlight {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        height: 350px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    /* Hero Player Focused - Compact Mobile Layout */
    .hero-player-focused {
        padding: 0 !important;
        min-height: auto !important;
        position: relative;
    }

    /* Gradient header background */
    .hero-player-focused .hero-content {
        text-align: left;
        position: relative;
    }

    .hero-player-focused .hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 2.75rem;
        background: linear-gradient(135deg,
            rgba(0, 166, 156, 0.25) 0%,
            rgba(0, 104, 186, 0.25) 100%);
        z-index: 0;
        pointer-events: none;
    }

    .hero-player-focused .container {
        padding-top: 1.25rem;
        padding-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
        background: linear-gradient(135deg, var(--flipt-primary, #00a69c) 0%, var(--flipt-secondary, #0068ba) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        z-index: 1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem !important;
        text-align: left !important;
        line-height: 1.4;
    }

    /* Feature Highlights - 2x2 Grid on Mobile */
    .feature-highlights {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .feature-highlight {
        flex-direction: column !important;
        text-align: center !important;
        padding: 0.625rem 0.5rem !important;
        margin-bottom: 0 !important;
        gap: 0.375rem !important;
        background: linear-gradient(135deg,
            rgba(var(--flipt-primary-rgb, 0, 166, 156), 0.08) 0%,
            rgba(var(--flipt-secondary-rgb, 0, 104, 186), 0.08) 100%) !important;
        border: 1px solid rgba(var(--flipt-primary-rgb, 0, 166, 156), 0.2) !important;
        border-radius: 0.625rem !important;
        position: relative;
        overflow: hidden;
    }

    .feature-highlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--flipt-primary, #00a69c), var(--flipt-secondary, #0068ba));
        opacity: 0.8;
    }

    .feature-highlight:nth-child(1)::before {
        background: linear-gradient(90deg, #00a69c, #4aa39c);
    }

    .feature-highlight:nth-child(2)::before {
        background: linear-gradient(90deg, #0068ba, #3b82f6);
    }

    .feature-highlight:nth-child(3)::before {
        background: linear-gradient(90deg, #ff6b6b, #ff8585);
    }

    .feature-highlight:nth-child(4)::before {
        background: linear-gradient(90deg, #f59e0b, #fbbf24);
    }

    .feature-highlight .feature-icon {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.85rem !important;
        border-radius: 0.375rem !important;
    }

    .feature-highlight:nth-child(1) .feature-icon {
        background: linear-gradient(135deg, #00a69c, #4aa39c);
    }

    .feature-highlight:nth-child(2) .feature-icon {
        background: linear-gradient(135deg, #0068ba, #3b82f6);
    }

    .feature-highlight:nth-child(3) .feature-icon {
        background: linear-gradient(135deg, #ff6b6b, #ff8585);
    }

    .feature-highlight:nth-child(4) .feature-icon {
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
    }

    .feature-highlight .feature-text strong {
        font-size: 0.7rem !important;
        line-height: 1.2;
        display: block;
        margin-bottom: 0.125rem !important;
    }

    .feature-highlight .feature-text p {
        font-size: 0.625rem !important;
        line-height: 1.25;
        margin: 0 !important;
        opacity: 0.85;
    }

    /* CTA Section - Compact Horizontal Pills */
    .hero-player-focused .cta-section {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
        justify-content: flex-start !important;
    }

    .hero-player-focused .cta-section .btn-theme-base {
        width: auto !important;
        min-width: auto !important;
        padding: 0.5rem 0.875rem !important;
        font-size: 0.8rem !important;
        flex: 1 1 calc(50% - 0.25rem);
        justify-content: center;
    }

    .hero-player-focused .cta-section .btn-theme-base:last-child {
        flex: 1 1 100%;
    }

    .hero-player-focused .cta-section .btn-icon {
        font-size: 0.85rem;
    }

    /* Hide hero image on mobile to save space */
    .hero-player-focused .hero-visual {
        display: none !important;
    }

    .hero-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero-stats-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
    }

    /* Community Proof - Hidden on mobile */
    .community-proof {
        display: none !important;
    }

    /* League Locations - Hidden on mobile */
    .league-locations-section {
        display: none !important;
    }

    /* CTA Container - 3 buttons wide */
    .why-flipt-section .cta-container {
        margin-top: 1.5rem !important;
    }

    .why-flipt-section .cta-container > p {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }

    .why-flipt-section .cta-container .d-flex {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
    }

    .why-flipt-section .cta-container .btn-theme-cta {
        padding: 0.5rem 0.25rem !important;
        min-width: 0 !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .why-flipt-section .cta-container .btn-theme-cta .d-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    .why-flipt-section .cta-container .btn-theme-cta .btn-icon {
        font-size: 1rem !important;
    }

    .why-flipt-section .cta-container .btn-theme-cta .btn-theme-cta-title {
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }

    .why-flipt-section .cta-container .btn-theme-cta .btn-theme-cta-subtitle {
        font-size: 0.55rem !important;
        opacity: 0.8;
    }
}

/* Dark Mode Enhancements */
[data-bs-theme="dark"] {
    .hero-director-focused::before,
    .hero-player-focused::before {
        opacity: 0.05;
    }

    .stat-badge {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .hero-stats-overlay {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

/* Dark Mode Mobile Feature Highlights */
@media (max-width: 767px) {
    [data-bs-theme="dark"] .feature-highlight {
        background: linear-gradient(135deg,
            rgba(var(--flipt-primary-rgb, 0, 166, 156), 0.15) 0%,
            rgba(var(--flipt-secondary-rgb, 0, 104, 186), 0.15) 100%) !important;
        border-color: rgba(var(--flipt-primary-rgb, 0, 166, 156), 0.3) !important;
    }

    [data-bs-theme="dark"] .hero-title {
        background: linear-gradient(135deg, var(--flipt-primary, #00d9c8) 0%, var(--flipt-secondary, #4aa3e8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Animation Enhancements */
.hero-content > * {
    animation: fadeInUp 0.6s ease-out;
}

.hero-content > *:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(5) {
    animation-delay: 0.5s;
}

/* Empty State Styling */
.empty-state-container {
    padding: 4rem 0;
}

.empty-state-content {
    background: var(--theme-surface-1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--theme-border-color);
    box-shadow: var(--theme-shadow);
}

.empty-state-icon {
    position: relative;
    margin-bottom: 2rem;
}

.empty-logo {
    height: 4rem;
    width: auto;
    display: inline-block;
    color: var(--flipt-primary);
    opacity: 0.92;
    transition: color 0.3s ease, opacity 0.3s ease;
}

[data-bs-theme="dark"] .empty-logo {
    color: var(--flipt-white);
    opacity: 0.85;
}

.add-icon {
    position: absolute;
    bottom: -0.5rem;
    right: 50%;
    transform: translateX(50%);
    color: var(--theme-accent);
    font-size: 2rem;
    background: var(--theme-bg-primary);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empty-state-title {
    color: var(--theme-text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.empty-state-description {
    color: var(--theme-text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-cta {
    margin-bottom: 1rem;
}

.cta-subtitle {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* League Card Simplification */
.league-card-description {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--theme-border-color);
}

.description-text {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    line-height: 1.4;
    display: block;
}

.league-card-details {
    margin-bottom: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--theme-text-primary);
}

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

.detail-icon {
    width: 16px;
    color: var(--theme-accent);
    margin-right: 0.625rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.distance-badge {
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: var(--theme-info);
    color: white;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.format-badge {
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: var(--theme-success);
    color: white;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Secondary CTA link */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--flipt-secondary, var(--theme-secondary, #0068ba));
    background: rgba(var(--flipt-secondary-rgb, 0, 104, 186), 0.08);
    border: 1px solid rgba(var(--flipt-secondary-rgb, 0, 104, 186), 0.35);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.cta-link i {
    font-size: 1rem;
}

.cta-link:hover,
.cta-link:focus {
    text-decoration: none;
    color: var(--theme-contrast, #ffffff);
    background: linear-gradient(135deg, var(--flipt-secondary, #0068ba) 0%, var(--flipt-primary, #00a69c) 100%);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
    transform: translateY(-1px);
}

.cta-link__text {
    white-space: nowrap;
}

[data-bs-theme="dark"] .cta-link,
body.dark-mode .cta-link {
    color: var(--theme-text-primary, #e2e8f0);
    background: rgba(var(--flipt-secondary-rgb, 30, 123, 201), 0.12);
    border-color: rgba(var(--flipt-secondary-rgb, 30, 123, 201), 0.4);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

[data-bs-theme="dark"] .cta-link:hover,
body.dark-mode .cta-link:hover,
[data-bs-theme="dark"] .cta-link:focus,
body.dark-mode .cta-link:focus {
    color: var(--theme-contrast, #ffffff);
    background: linear-gradient(135deg, var(--flipt-secondary, #1e7bc9) 0%, var(--flipt-primary, #00b8a9) 100%);
    border-color: transparent;
}

/* League Card Button Styles - MOVED to league-card-enhanced.css for consolidation */

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .hero-content > *,
    .value-prop,
    .feature-highlight,
    .benefit-card,
    .btn-theme-base {
        animation: none;
        transition: none;
    }

    .value-prop:hover,
    .feature-highlight:hover,
    .benefit-card:hover,
    .btn-theme-base:hover {
        transform: none;
    }
}
