/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header styles */
  header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
  }
  
  /* Section styles */
  section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 1200px;
  }
  
  section h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
  }
  
  /* Live sports links */
  .cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
  }
  
  .cell:hover {
    background: #e9ecef;
    transform: translateY(-2px);
  }
  
  .text-green-500 {
    color: #10b981;
  }
  
  /* Lists */
  ul, ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }
  
  /* FAQ styles */
  dl {
    margin: 1rem 0;
  }
  
  dt {
    font-weight: 600;
    color: #1e3c72;
    margin-top: 1rem;
  }
  
  dd {
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Footer */
  footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }
  
    section {
      margin: 1rem;
      padding: 1.5rem;
    }
  }
  
  /* Feature grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  /* Sport links */
  .sport-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .sport-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
  }
  
  .sport-link:hover {
    background: #e9ecef;
    color: #1e3c72;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #1e3c72;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
  }
  
  /* Main content section */
  .main-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 2rem auto;
    padding: 2.5rem;
  }
  
  .main-content h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .content-wrapper h3 {
    color: #2a5298;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .content-wrapper h4 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .sports-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .sports-list li {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0;
  }
  
  .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
  }
  
  .feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-3px);
  }
  
  .access-features {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }
  
  .access-features li {
    position: relative;
    padding-left: 1.5rem;
  }
  
  .access-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e3c72;
  }
  
  /* Bookmark banner */
  .bookmark-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto 1rem;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: pulse 2s infinite;
  }
  
  .bookmark-banner p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .bookmark-banner strong {
    color: #ffd700;
    font-size: 1.3rem;
  }
  
  .bookmark-icon {
    width: 32px;
    height: 32px;
    color: #ffd700;
    flex-shrink: 0;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  /* Make banner responsive */
  @media (max-width: 768px) {
    .bookmark-banner {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      margin: 1.5rem 1rem 0.5rem;
      padding: 1rem;
    }
    
    .bookmark-banner p {
      font-size: 1.1rem;
    }
    
    .bookmark-banner strong {
      font-size: 1.2rem;
    }
  } 