/* components.css - Reusable Components: Cards, Buttons, Badges, Forms, Navigation */

/* Navigation Components */
.navbar-dark .nav-link {
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    border-bottom-color: var(--text-primary);
}

/* Modern Navigation Styles */
.navbar-modern {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

/* Center navigation absolutely */
.navbar-modern .container {
    position: relative;
}

.navbar-center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Mobile Offcanvas Menu */
.offcanvas-modern {
    background-color: #2a2d35;
    color: #fff;
}

.offcanvas-modern .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-modern .offcanvas-title {
    color: #fff;
}

.offcanvas-modern .nav-link-mobile {
    color: rgba(255,255,255,0.8);
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.offcanvas-modern .nav-link-mobile:hover {
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

.offcanvas-modern .nav-link-mobile.active {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.navbar-brand-modern {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.navbar-brand-modern:hover {
    color: #fff;
    text-decoration: none;
}

.brand-gradient {
    background: linear-gradient(135deg, #20b2aa 0%, #4da3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link-modern {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link-modern:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    text-decoration: none;
}

.nav-link-modern.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.btn-modern-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-modern-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
    color: #000;
    text-decoration: none;
}

/* Desktop screens - absolute center positioning */
@media (min-width: 992px) {
    .navbar-modern {
        min-height: 70px; /* Ensure consistent height */
    }
}

/* Smaller screens - disable absolute positioning */
@media (max-width: 991px) {
    .navbar-center-nav {
        position: relative;
        left: auto;
        transform: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 575px) {
    .navbar-modern {
        padding: 0.75rem 0;
    }
    
    .navbar-brand-modern {
        font-size: 1.25rem;
    }
    
    .nav-link-modern {
        font-size: 0.875rem;
        padding: 0.375rem 0.5rem;
    }
    
    .btn-modern-primary {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Mobile Navigation */
.nav-link-mobile {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 0;
    display: block;
    transition: all 0.2s ease;
}

.nav-link-mobile:hover {
    color: #fff;
    padding-left: 0.5rem;
    text-decoration: none;
}

.nav-link-mobile.active {
    color: #20b2aa;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    margin-left: 0.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.btn-secondary-theme {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-theme:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
}

.btn-outline-theme {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #d0d0d0;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-theme:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: white;
    text-decoration: none;
}

/* Quick Actions - Matte Black Transparency Theme */
.quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Note: Primary .quick-action-btn definition moved to line 1113 with merged properties */

/* Mobile adjustments for quick action buttons */
@media (max-width: 576px) {
    /* Date filter quick actions - horizontal scroll */
    .quick-actions:first-of-type {
        gap: 0.375rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }
    
    .quick-actions:first-of-type::-webkit-scrollbar {
        display: none;
    }
    
    /* League filter quick actions - match stat card layout */
    .quick-actions:not(:first-of-type) {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .quick-actions:not(:first-of-type) .quick-action-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);  /* 2 columns with gap */
        max-width: calc(50% - 0.25rem);
    }
    
    /* Home page quick actions - special handling */
    .home-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .home-actions .quick-action-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);  /* 2 columns with gap */
        max-width: calc(50% - 0.25rem);
    }
    
    /* Date buttons */
    .quick-actions:first-of-type .quick-action-btn {
        min-width: auto;
        flex: 0 0 auto;
        padding: 0.5rem 0.75rem;
    }
    
    .quick-action-btn.date-btn {
        min-width: 50px;
        padding: 0.5rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .quick-action-btn span {
        display: inline-block;
        line-height: 1.2;
        vertical-align: middle;
    }
    
    /* Handle inline league counts on mobile */
    .quick-action-btn small {
        font-size: 0.75rem;
        opacity: 0.8;
        display: inline;
        margin-left: 2px;
    }
    
    /* Date buttons specific styling */
    .quick-action-btn.date-btn span {
        display: block;
        text-align: center;
    }
    
    /* Hide/show date spans based on screen size */
    .quick-action-btn.date-btn .date-desktop {
        display: none;
    }
    
    .quick-action-btn.date-btn .date-mobile {
        display: block;
        font-size: 1rem;
        font-weight: 600;
    }
}

/* Desktop date display */
@media (min-width: 577px) {
    .quick-action-btn.date-btn .date-desktop {
        display: block;
    }
    .quick-action-btn.date-btn .date-mobile {
        display: none;
    }
}

/* Live Indicators - Glowing Animation */
/* Live indicator - moved to line 555 with simpler pulse animation */

/* Stat Cards - Used in service details and dashboards */
.stat-card-primary {
    border: 2px solid #0d6efd;
    background-color: rgba(13, 110, 253, 0.15);
    border-left: 4px solid #0d6efd;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
}

.stat-card-primary .stat-value {
    color: #0d6efd;
    font-weight: bold;
}

.stat-card-primary .stat-label {
    color: #fff;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 255, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}


.badge-minimal {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0.125rem;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    font-weight: 400;
    white-space: nowrap;
}

/* Game Status Badge System */
/* Badge base styles merged into main definition at line 755 */

/* Live Game Badge */
.badge-live {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

/* Scheduled Game Badge */
.badge-scheduled {
    background: rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: #6cb3ff;
}

/* Final Game Badge */
.badge-final {
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 400;
}

/* Service badge colors */
.badge-service {
    background: rgba(32, 178, 170, 0.2);
    color: #20b2aa;
    border: 1px solid rgba(32, 178, 170, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.badge-channel {
    background: rgba(0, 123, 255, 0.2);
    color: #4da3ff;
    border: 1px solid rgba(0, 123, 255, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

/* Live Indicator Dot */
.live-indicator {
    width: 8px;
    height: 8px;
    background: #00ff41;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-live-indicator 2s infinite;
}

@keyframes pulse-live-indicator {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }
    70% {
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(0, 255, 65, 0);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

/* League Text Styling */
/* Card Components */
.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.15);
}

.card-header {
    background-color: var(--accent);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
}

.card-header h3, .card-header h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Button Components */
.btn-primary {
    background-color: var(--badge-primary);
    color: var(--text-primary);
    border: 1px solid var(--badge-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    color: var(--text-primary);
}

.btn-primary.btn-pressed {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-light);
}

.btn-outline {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--accent);
}

.btn-sm {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Badge Components - Merged from all definitions */
.badge {
    /* Layout from components.css:492 */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    
    /* Typography from components.css:764 */
    font-size: 0.8rem;
    padding: 0.25em 0.4em;
    font-weight: 700;
    
    /* Base styling from base.css:189 */
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    
    /* Additional properties for consistency */
    border-radius: 0.25rem;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
}

.badge.bg-secondary {
    background-color: var(--accent);
}

.badge-primary {
    background-color: var(--badge-primary);
}

/* Service/Channel specific badge colors */
.service-box[data-service-type="service"] .badge-primary,
.service-box[data-service-type="service"] .badge-success {
    background-color: var(--btn-service); /* Teal for services */
    color: #fff;
}

.service-box[data-service-type="channel"] .badge-primary,
.service-box[data-service-type="channel"] .badge-success {
    background-color: var(--btn-channel); /* Blue for channels */
    color: #fff;
}

/* Custom badge classes for service cards */
.badge-exclusive {
    background-color: #ffc107;
    color: #212529;
}

.price-badge, .option-badge {
    background-color: var(--badge-primary);
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Progress Components */
.progress {
    height: 4px;
    border-radius: 0;
}

.progress-bar {
    background-color: var(--badge-primary);
}

/* Form Components */
.form-control {
    background-color: var(--bg-secondary);
    border-color: var(--border);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--bg-secondary);
    border-color: var(--accent-light);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Minimalist Search Bar - Standard search style across the site */
.minimalist-search {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: transparent;
}

.minimalist-search .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0;
}

.minimalist-search .form-control:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}

.minimalist-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.minimalist-search .search-btn,
.minimalist-search button[type="submit"] {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    transition: all 0.2s ease;
}

.minimalist-search .search-btn:hover,
.minimalist-search button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.minimalist-search .search-btn:focus,
.minimalist-search button[type="submit"]:focus {
    box-shadow: none;
    outline: none;
}

/* Alert Components */
.alert-theme {
    background: rgba(255,193,7,0.1);
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.alert-theme.success {
    background: rgba(40,167,69,0.1);
    border-color: rgba(40,167,69,0.3);
    color: #28a745;
}

.alert-theme.danger {
    background: rgba(220,53,69,0.1);
    border-color: rgba(220,53,69,0.3);
    color: #dc3545;
}

.alert-theme.info {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.3);
    color: #6cb3ff;
}

/* Watch Button Components - Channel vs Service */
.btn-channel {
    background-color: var(--btn-channel);
    color: var(--text-primary);
    border: 1px solid var(--btn-channel);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-channel:hover {
    background-color: var(--btn-channel-hover);
    border-color: var(--btn-channel-hover);
    transform: translateY(-1px);
    color: var(--text-primary);
}

.btn-service {
    background-color: var(--btn-service);
    color: var(--text-primary);
    border: 1px solid var(--btn-service);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-service:hover {
    background-color: var(--btn-service-hover);
    border-color: var(--btn-service-hover);
    transform: translateY(-1px);
    color: var(--text-primary);
}

.btn-outline-channel {
    background: none;
    border: 1px solid var(--btn-channel);
    color: var(--btn-channel);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-channel:hover {
    background-color: var(--btn-channel);
    border-color: var(--btn-channel);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-outline-service {
    background: none;
    border: 1px solid var(--btn-service);
    color: var(--btn-service);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-service:hover {
    background-color: var(--btn-service);
    border-color: var(--btn-service);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Small button variants */
.btn-channel.btn-sm,
.btn-service.btn-sm,
.btn-outline-channel.btn-sm,
.btn-outline-service.btn-sm {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Broadcast Button Components */
.broadcast-btn {
    font-size: clamp(0.65rem, 2vw, 0.875rem);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    padding: 0.25rem 0.5rem;
}

/* Disabled broadcast buttons for future games */
span.btn-channel.broadcast-btn,
span.btn-service.broadcast-btn {
    background-color: #4a4a4a;
    border-color: #5a5a5a;
    color: #999;
    cursor: not-allowed;
    opacity: 0.8;
}

span.btn-channel.broadcast-btn:hover,
span.btn-service.broadcast-btn:hover {
    background-color: #4a4a4a;
    border-color: #5a5a5a;
    transform: none;
}

/* Game Status Animations */
/* Removed pulse animation from entire game status - only live indicator should pulse */

/* Team Link Components */
.team-link:hover {
    color: var(--accent-light);
}

/* Quick Actions Components - Default: Matte Black with Transparency */
.quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quick-action-btn {
    flex: 1;
    min-width: 150px;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d0d0d0;
    backdrop-filter: blur(10px);
    font-weight: 500;
    white-space: normal;
    word-break: keep-all;
}

.quick-action-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.quick-action-btn.active {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 500;
}

.quick-action-btn:disabled,
.quick-action-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.05);
}

.quick-action-btn:disabled:hover,
.quick-action-btn.disabled:hover {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.05);
    transform: none;
}

.quick-action-btn i {
    font-size: 1.2rem;
}

/* Game Card Components - Default: Cool Steel Grey */
/* Note: Main .game-card styles are in layouts.css */


/* League Filter Buttons - Enhanced Legibility */
.league-filter-actions .quick-action-btn {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.league-filter-actions .quick-action-btn .league-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.league-filter-actions .quick-action-btn .game-count {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Mobile adjustments for league filters - Enhanced legibility */
@media (max-width: 576px) {
    .league-filter-actions .quick-action-btn {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        min-height: 55px;
    }
    
    .league-filter-actions .quick-action-btn .league-name {
        font-size: 1.125rem;
        font-weight: 600;
    }
    
    .league-filter-actions .quick-action-btn .game-count {
        font-size: 0.875rem;
        font-weight: 400;
        opacity: 0.9;
    }
}

/* Coming Soon Components */
.coming-soon-wrapper {
    padding: 2rem 0;
}

.coming-soon-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.coming-soon-title {
    color: var(--bs-white);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.coming-soon-text {
    color: var(--bs-gray-400);
    margin-bottom: 0;
}

/* Animation */
@keyframes pulse-icon {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.coming-soon-icon {
    animation: pulse-icon 2s ease-in-out infinite;
}

/* Offseason Placeholder - Reuses coming-soon styles */
.offseason-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
}

/* Service Cards - moved to layouts.css with merged min-height property */

.service-header {
    margin-bottom: 0.75rem;
}

.service-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

/* Clickable service card styles */
.service-card-link {
    display: block;
    color: inherit;
}

.service-card-link:hover {
    color: inherit;
}

.service-box.clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-box.clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.service-box .service-arrow {
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-box.clickable:hover .service-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Tighter pricing display */
.service-pricing {
    margin-bottom: 0.5rem;
}

.service-pricing .price-line {
    line-height: 1.4;
}

/* =========================
   Blog Styles
   ========================= */

/* FAQ Accordion Styles */
.accordion-item {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.accordion-button {
    background: transparent;
    color: white;
    font-size: 1.2rem;
}

.accordion-button.collapsed {
    background: transparent;
    color: white;
}

.accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.05);
    color: white;
}

.accordion-body {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   Anchor Sections for Blog Posts
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Service Details Page - Clean Redesign
   ============================================ */

/* Compact badge classes - must be after .badge to override */
.badge-service-compact {
    background: rgba(32, 178, 170, 0.2);
    color: #20b2aa;
    border: 1px solid rgba(32, 178, 170, 0.3);
    padding: 0.125rem 0.25rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.badge-channel-compact {
    background: rgba(0, 123, 255, 0.2);
    color: #4da3ff;
    border: 1px solid rgba(0, 123, 255, 0.3);
    padding: 0.125rem 0.25rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

/* =========================
   Service Details Components
   ========================= */

/* Spec item base style */
.spec-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

/* Clickable team spec items */
.spec-item-clickable {
    transition: all 0.2s ease;
    cursor: pointer;
}

.spec-item-clickable:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

/* Device items and provider links */
.device-item {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.device-item-link {
    transition: all 0.2s ease;
}

.device-item-link:hover .device-item {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

/* =========================
   Utility Classes
   ========================= */

/* Dark card background - replaces inline rgba(0,0,0,0.5) */
.card-dark-bg {
    background: rgba(0,0,0,0.5);
}

/* Social media boxes */
.social-media-box {
    padding: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}

.social-icon-lg {
    font-size: 1.25rem;
}

/* Division card styling */
.division-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
}

/* Tab container styling */
.tab-container-styled {
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
}

/* Tier card base styling */
.tier-card-base {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Compact share button */
.share-btn-compact {
    padding: 4px 12px;
}

/* =========================
   Service Page Components (from service_details.html)
   ========================= */

/* Compact stat cards */
.stat-card-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card-compact:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stat-value-compact {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label-compact {
    font-size: 0.75rem;
    line-height: 1;
}

/* Pricing tiers */
.tier-featured {
    border: 2px solid #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.addon-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #17a2b8;
}

/* Sling package color badges */
.bg-sling-orange {
    background-color: #FF6600;
    color: white;
}

.bg-sling-blue {
    background-color: #0033CC;
    color: white;
}

.bg-sling-both {
    background: linear-gradient(135deg, #FF6600 0%, #FF6600 50%, #0033CC 50%, #0033CC 100%);
    color: white;
}

/* League cards - clickable with sharp borders */
.league-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    height: 100%;
}

.league-card-link {
    display: block;
    height: 100%;
}

.league-card-link:hover .league-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Channel badges - non-interactive */
.channel-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.875rem;
    cursor: default;
}

/* =========================
   Pagination Components - Site-Wide Standard
   ========================= */

/* Base pagination styling */
.pagination {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
}

.pagination .page-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

/* =========================
   Quick Actions Scrollbar Enhancement
   ========================= */

.quick-actions.scrollable {
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
}

.quick-actions.scrollable::-webkit-scrollbar {
    height: 6px;
}

.quick-actions.scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.quick-actions.scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.quick-actions.scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}