/* Live on Sport - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Navigation Bar */
nav {
    background-color: #fff;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo .logo-icon {
    font-size: 32px;
}

.brand-logo .brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.brand-logo .brand-name span {
    color: #ff6b35;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ff6b35;
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.login-btn {
    padding: 8px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 25px;
    background: transparent;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.language-selector {
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.language-selector .globe-icon {
    font-size: 16px;
}

.language-selector .arrow {
    font-size: 10px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 200px;
    margin-top: 10px;
    z-index: 1000;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #1a1a1a;
}

.language-option:hover {
    background: #f8fafc;
    color: #ff6b35;
}

.language-option.active {
    background: #fff5f2;
    color: #ff6b35;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 50px 120px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-left {
    max-width: 650px;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.subscribe-hero-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.subscribe-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.tv-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
}

.tv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 800;
}

.tv-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tv-features {
    list-style: none;
}

.tv-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.tv-features li::before {
    content: "✓";
    color: #ff6b35;
    font-size: 20px;
    font-weight: bold;
}

/* Sports Section */
.sports-section {
    background: #fff;
    padding: 80px 50px;
    color: #1a1a1a;
}

.sports-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sports-section h2 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sport-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.sport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sport-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.sport-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sport-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Sport-specific colors */
.sport-card.soccer h3 { color: #00a651; }
.sport-card.nhl h3 { color: #041e42; }
.sport-card.nba h3 { color: #c8102e; }
.sport-card.boxing h3 { color: #FFD700; }
.sport-card.mlb h3 { color: #BA0C2F; }
.sport-card.golf h3 { color: #007A33; }
.sport-card.nfl h3 { color: #013369; }
.sport-card.tennis h3 { color: #00A859; }

/* Content Sections */
.content-section,
.teams-section,
.leagues-section {
    background: #fff;
    padding: 80px 50px;
    color: #1a1a1a;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.content-grid,
.teams-grid,
.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-card,
.team-card,
.league-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.content-card:hover,
.team-card:hover,
.league-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.content-icon,
.team-icon,
.league-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.content-card h3,
.team-card h3,
.league-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.content-card p,
.team-card p,
.league-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: #1a1a1a;
    padding: 80px 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: #aaa;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    background: #1a1a1a;
    padding: 80px 50px;
    color: #fff;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-section h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
}

.why-choose-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.why-choose-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b35;
}

.why-choose-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
}

/* Why Choose Section */
.why-choose-section {
    background: #1a1a1a;
    padding: 80px 50px;
    color: #fff;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-section h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
}

.why-choose-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.why-choose-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b35;
}

.why-choose-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
}

/* Game Schedule Section */
.schedule-section {
    background: #fff;
    padding: 60px 50px;
    color: #1a1a1a;
    min-height: 600px;
}

.schedule-header {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.schedule-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.schedule-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.league-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}

.league-selector label {
    font-weight: 600;
    color: #1a1a1a;
}

.league-selector select {
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    cursor: pointer;
    min-width: 200px;
}

.league-selector select:focus {
    outline: none;
    border-color: #ff6b35;
}

.date-picker {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-picker label {
    font-weight: 600;
    color: #1a1a1a;
}

.date-picker input[type="date"] {
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    cursor: pointer;
}

.date-picker input[type="date"]:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Games Container */
#games-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* League Header */
.league-header {
    width: 100%;
    margin-bottom: 20px;
}

.league-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b35;
    display: inline-block;
}

/* League Games Grid */
.league-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Game Card */
.game-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.game-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.game-teams .team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.team-name {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
}

.score {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b35;
}

.vs {
    font-size: 16px;
    font-weight: 700;
    color: #666;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
    flex-wrap: wrap;
    gap: 10px;
}

.game-date, .game-time {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.game-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-status.scheduled {
    background: #e3f2fd;
    color: #1976d2;
}

.game-status.in {
    background: #ffebee;
    color: #d32f2f;
    animation: pulse 2s infinite;
}

.game-status.final {
    background: #e8f5e9;
    color: #388e3c;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.loading, .no-games {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

/* Game Detail Page */
.game-detail-page {
    background: #1a1a1a;
    min-height: 100vh;
    color: #fff;
    padding: 80px 50px;
}

.game-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.game-header .league-name {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 20px;
}

.matchup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.matchup-team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.matchup-team img {
    width: 50px;
    height: 50px;
}

.matchup-team span {
    font-size: 24px;
    font-weight: 700;
}

.matchup .vs-text {
    font-size: 20px;
    color: #666;
}

/* Video Player Section */
.video-player-section {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
}

.play-button {
    width: 100px;
    height: 100px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 auto 20px;
}

.play-button:hover {
    transform: scale(1.1);
    background: #ff4757;
}

.video-placeholder p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Stream Buttons */
.stream-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.stream-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.stream-btn.premium {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
}

.stream-btn.basic {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
}

.stream-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Quality Icons */
.quality-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.quality-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quality-icon-img {
    font-size: 32px;
}

.quality-icon span {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
}

/* Game Details Grid */
.game-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.detail-box {
    background: #2d2d2d;
    border-radius: 15px;
    padding: 25px;
}

.detail-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-box h3 span {
    font-size: 24px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #3d3d3d;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #aaa;
    font-size: 14px;
}

.detail-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Last Matches */
.last-matches {
    list-style: none;
}

.last-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #3d3d3d;
    border-radius: 8px;
    margin-bottom: 10px;
}

.last-match-teams {
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-match-teams img {
    width: 24px;
    height: 24px;
}

.last-match-score {
    font-weight: 700;
}

.last-match-score.win {
    color: #4caf50;
}

.last-match-score.loss {
    color: #f44336;
}

/* Access Modal */
.access-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #00d9b1;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.modal-content p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 15px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn.signup {
    background: #00d9b1;
    color: #1a1a1a;
}

.modal-btn.login {
    background: #ff9800;
    color: #fff;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 177, 0.4);
}

.modal-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

/* Live Badge */
.live-now-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

.live-badge {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Subscription/Pricing Section */
.subscription,
.pricing-section {
    background: #f8f9fa;
    padding: 80px 50px;
    color: #1a1a1a;
}

.subscription-container {
    max-width: 1400px;
    margin: 0 auto;
}

.subscription h2 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 25px;
    padding: 45px 35px;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    opacity: 0.95;
    margin-bottom: 15px;
}

.price {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
}

.price span {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.95;
}

.best-value {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.price-subtitle {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
    font-weight: 500;
}

.subscribe-btn {
    background: white;
    color: #ff6b35;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subscribe-btn:hover {
    background: #fff;
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.features,
.features-stars,
.features-checks {
    list-style: none;
}

.features li,
.features-stars li,
.features-checks li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.features li:before {
    content: "✓";
    margin-right: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.card-header {
    margin-bottom: 20px;
}

.pass-type {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.subscribe-card-btn {
    background: white;
    color: #ff6b35;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.subscribe-card-btn:hover {
    background: #f5f5f5;
    transform: scale(1.02);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.features-list li::before {
    content: "⭐";
    font-size: 18px;
    flex-shrink: 0;
}

.features-list.checkmark li::before {
    content: "✓";
    font-size: 20px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 40px 50px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* Legal Pages */
.legal-page {
    background: #fff;
    color: #1a1a1a;
    padding: 80px 50px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.legal-page ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.legal-page a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 48px;
    }
    
    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .brand-logo {
        order: 1;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .nav-links {
        order: 2;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }
    
    .nav-right {
        order: 3;
        margin-top: 15px;
    }
    
    .hero {
        padding: 40px 20px 60px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .sports-section,
    .subscription,
    .content-section,
    .teams-section,
    .features-section,
    .pricing-section,
    .schedule-section {
        padding: 50px 20px;
    }
    
    .sports-section h2,
    .subscription h2,
    .section-title {
        font-size: 32px;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .schedule-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .schedule-header h2 {
        font-size: 28px;
    }
    
    .schedule-controls {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .league-selector,
    .date-picker {
        width: 100%;
    }
    
    .league-selector select,
    .date-picker input {
        width: 100%;
    }
    
    .league-games-grid {
        grid-template-columns: 1fr;
    }
    
    .league-header h3 {
        font-size: 22px;
    }
}
