/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    background: #1c063a;
    color: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 100;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-links .btn {
    padding: 8px 16px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    color: #ffd700;
  }
  
  .nav-links .btn:hover {
    background-color: #ffd700;
    color: #000;
  }
  
  /* Navbar Toggle for Mobile */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #fff;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1c063a;
    width: 100%;
    padding: 20px 0;
    gap: 10px;
    text-align: center;
  }
  
  .nav-links.active a {
    padding: 10px 0;
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(145deg, #1c063a, #5e3af8);
    color: #fff;
    padding: 60px 0;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .hero-text .highlight {
    color: #ffd700;
  }
  
  .hero-text .tagline {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 600;
  }
  
  .hero-text .details {
    margin: 20px 0;
  }
  
  .cta-buttons .btn {
    display: inline-block;
    margin-right: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .btn.primary {
    background: #ffd700;
    color: #000;
  }
  
  .btn.secondary {
    border: 2px solid #ffd700;
    color: #ffd700;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Prizes Section */
  .prizes {
    padding: 60px 0;
    background: #fff;
  }
  
  .prizes h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .prize-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card {
    background: #f3f3f3;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .card .prize-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1c063a;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .hero-image {
      margin-top: 20px;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .nav-links {
      display: none;
    }
  }
  