* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    line-height: 1.6; color: #2c3e50; max-width: 1200px; margin: 0 auto; padding: 0 20px;
    background: #f8f9fa;
}

header { 
    background: #f8f9fa; padding: 1.5rem 0; margin-bottom: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 0 0 8px 8px;
}
.logo { font-size: 1.5rem; font-weight: bold; color: #c41e3a; text-decoration: none; }
nav a { margin-left: 2rem; text-decoration: none; color: #c41e3a; font-weight: 500; }
nav a:hover { color: #ffd700; }

.hero { 
    text-align: center; padding: 4rem 0; margin-bottom: 3rem;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    border-radius: 8px; color: white;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.3rem; opacity: 0.9; }

.main-content { margin-bottom: 3rem; }
.main-content h2 { 
    margin: 2.5rem 0 1.5rem; color: #c41e3a;
    padding-bottom: 0.5rem; border-bottom: 2px solid #ffd700;
}
.main-content p { margin-bottom: 1.2rem; color: #555; }
.main-content ul { margin: 1.5rem 0 1.5rem 2rem; }
.main-content li { margin-bottom: 0.8rem; color: #555; }

.wins-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; margin: 2rem 0;
}
.win-card { 
    background: white; padding: 1.5rem; border-radius: 8px; 
    border-left: 4px solid #c41e3a; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.win-card h3 { color: #c41e3a; margin-bottom: 0.5rem; }

.sports-table { 
    width: 100%; border-collapse: collapse; margin: 1.5rem 0;
    background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.sports-table th, .sports-table td { 
    padding: 12px; text-align: left; border-bottom: 1px solid #ecf0f1;
}
.sports-table th { background: #c41e3a; color: white; }
.sports-table tr:hover { background: #f8f9fa; }

.faq-item { 
    margin-bottom: 2rem; padding: 2rem; 
    background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}
.faq-question { 
    font-weight: bold; margin-bottom: 1rem; color: #c41e3a;
    font-size: 1.2rem;
}

.error-page { 
    text-align: center; padding: 4rem 0; 
    background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.error-code { 
    font-size: 6rem; color: #c41e3a; font-weight: bold; 
    margin-bottom: 1rem;
}
.error-message { font-size: 1.5rem; color: #2c3e50; margin-bottom: 2rem; }

.breadcrumbs { 
    margin-bottom: 2rem; padding: 1rem 0; 
    font-size: 0.9rem; color: #7f8c8d;
}
.breadcrumbs a { color: #c41e3a; text-decoration: none; }
.breadcrumbs a:hover { color: #8b0000; }

footer { 
    background: #2c3e50; color: #fff; padding: 3rem 0; margin-top: 4rem;
    text-align: center; border-radius: 8px 8px 0 0;
}
.footer-links { margin: 1.5rem 0; }
.footer-links a { color: #bdc3c7; margin: 0 1.5rem; text-decoration: none; }
.footer-links a:hover { color: #c41e3a; }

@media (max-width: 768px) {
    header { flex-direction: column; text-align: center; }
    nav { margin-top: 1rem; }
    nav a { margin: 0 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .wins-grid { grid-template-columns: 1fr; }
    .error-code { font-size: 4rem; }
}