* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  color: #333;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 80px);
}

.hero-section {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-size: 1.2rem;
  color: #666;
}

/* Tournament Info Styles */
.tournament-info {
  background: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #667eea;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.info-card {
  background: white;
  border: 2px solid #f0f0f0;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.info-card h2 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  padding: 0.5rem 0;
  line-height: 1.6;
  color: #555;
}

.info-card ul li:before {
  content: "→ ";
  color: #667eea;
  font-weight: bold;
  margin-right: 0.5rem;
}

.info-card p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
}

.rules-card {
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
}

.rules-card h2 {
  color: #764ba2;
}

.info-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
  min-height: 200px;
}

.quick-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.quick-link .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.quick-link .text {
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .tournament-info {
    padding: 1rem;
  }

  .info-section {
    padding: 1rem;
    font-size: 1rem;
  }

  .info-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .info-card h2 {
    font-size: 1.1rem;
  }

  .info-highlight {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .quick-link {
    padding: 1.5rem;
    min-height: 150px;
  }

  .quick-link .icon {
    font-size: 2.5rem;
  }

  .quick-link .text {
    font-size: 1rem;
  }
}
