Changed around line 1
+ :root {
+ --phillies-red: #E81828;
+ --phillies-blue: #002D72;
+ --light-gray: #f4f4f4;
+ --dark-gray: #333333;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark-gray);
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/stadium.svg');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ padding: 2rem;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo img {
+ height: 50px;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--phillies-red);
+ }
+
+ .hero-section {
+ text-align: center;
+ padding: 4rem 2rem;
+ }
+
+ .hero-section h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-buttons {
+ margin-top: 2rem;
+ }
+
+ .primary-button, .secondary-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ border-radius: 5px;
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button {
+ background: var(--phillies-red);
+ color: white;
+ }
+
+ .secondary-button {
+ background: transparent;
+ border: 2px solid white;
+ color: white;
+ }
+
+ .primary-button:hover, .secondary-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .stats-grid, .player-grid, .schedule-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .stat-card, .player-card, .game-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .stat-card:hover, .player-card:hover, .game-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .player-card img {
+ width: 150px;
+ height: 150px;
+ border-radius: 50%;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background: var(--phillies-blue);
+ color: white;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ margin-right: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-section h1 {
+ font-size: 2.5rem;
+ }
+
+ .cta-buttons {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .primary-button, .secondary-button {
+ margin: 0;
+ }
+ }