/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Verification Modal */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 1px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header h2 {
  color: #fff;
  font-size: 2rem;
  margin: 20px 0 10px;
  font-weight: 600;
}

.modal-header p {
  color: #ccc;
  margin-bottom: 30px;
}

.maple-leaf {
  font-size: 3rem;
  margin-bottom: 10px;
}

.age-info {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid #444;
}

.age-info p {
  color: #fff;
  margin: 5px 0;
  font-weight: 500;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  justify-content: center;
}

.disclaimer {
  color: #888;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ccc;
  border: 2px solid #555;
}

.btn-secondary:hover {
  background: #555;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #00d4aa;
  border: 2px solid #00d4aa;
}

.btn-outline:hover {
  background: #00d4aa;
  color: white;
}

.btn-primary.large,
.btn-outline.large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #333;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-brand h1 {
  color: #00d4aa;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #00d4aa;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00d4aa;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ccc;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/bg.jpg") center / cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding-top: 80px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid #333;
}

.stat h3 {
  font-size: 2rem;
  color: #00d4aa;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #ccc;
  font-weight: 500;
}

/* Page Headers */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 1px solid #333;
}

.page-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Games */
.featured-games {
  padding: 80px 0;
  background: #0a0a0a;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.games-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.game-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.1);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-btn,
.demo-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn {
  background: #00d4aa;
  color: white;
}

.demo-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.game-info p {
  color: #ccc;
  margin-bottom: 1rem;
}

.game-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.game-stats span {
  color: #888;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Tournaments */
.tournaments {
  padding: 80px 0;
  background: #111;
}

.tournament-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tournament-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.tournament-card:hover {
  transform: translateX(5px);
}

.tournament-date {
  text-align: center;
  min-width: 80px;
}

.tournament-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00d4aa;
}

.tournament-date .month {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 600;
}

.tournament-info {
  flex: 1;
}

.tournament-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tournament-info p {
  color: #ccc;
  margin-bottom: 1rem;
}

.tournament-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.tournament-meta span {
  color: #888;
}

/* Game Filters */
.game-filters {
  padding: 40px 0;
  background: #111;
  border-bottom: 1px solid #333;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  color: #ccc;
  border: 2px solid #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #00d4aa;
  color: white;
  border-color: #00d4aa;
}

/* Games Section */
.games-section {
  padding: 60px 0;
  background: #0a0a0a;
}

/* Tournament Categories */
.tournament-categories {
  padding: 40px 0;
  background: #111;
  border-bottom: 1px solid #333;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  background: transparent;
  color: #ccc;
  border: 2px solid #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background: #00d4aa;
  color: white;
  border-color: #00d4aa;
}

/* Featured Tournament */
.featured-tournament {
  padding: 60px 0;
  background: #0a0a0a;
}

.tournament-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #333;
}

.tournament-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.tournament-details {
  padding: 2rem;
}

.tournament-badge {
  background: #00d4aa;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.tournament-details h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tournament-details p {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tournament-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item .label {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.info-item .value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Tournament List Section */
.tournament-list-section {
  padding: 60px 0;
  background: #111;
}

.tournament-list-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.tournament-card-large {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.1);
}

.tournament-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tournament-type {
  background: #00d4aa;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tournament-content h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tournament-content p {
  color: #ccc;
  margin-bottom: 1rem;
}

.tournament-progress {
  margin: 1rem 0;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4aa 0%, #00b894 100%);
  transition: width 0.3s ease;
}

.tournament-progress span {
  color: #888;
  font-size: 0.9rem;
}

/* Community Stats */
.community-stats {
  padding: 60px 0;
  background: #111;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-card h3 {
  color: #00d4aa;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-card p {
  color: #ccc;
  font-weight: 500;
}

/* Community Features */
.community-features {
  padding: 80px 0;
  background: #0a0a0a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 2rem;
}

.feature-content h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-content p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Top Players */
.top-players {
  padding: 80px 0;
  background: #111;
}

.top-players h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.player-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #333;
  transition: transform 0.3s ease;
  position: relative;
}

.player-card:hover {
  transform: translateY(-5px);
}

.player-card.champion {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, #2d2d1a 0%, #3d3d2d 100%);
}

.player-rank {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.player-avatar {
  margin-bottom: 1rem;
}

.player-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00d4aa;
}

.player-info h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.player-info p {
  color: #ccc;
  margin-bottom: 1rem;
}

.player-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.player-stats span {
  color: #888;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Recent Activity */
.recent-activity {
  padding: 80px 0;
  background: #0a0a0a;
}

.recent-activity h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.activity-feed {
  max-width: 800px;
  margin: 0 auto;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 10px;
  border: 1px solid #333;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.activity-item:hover {
  transform: translateX(5px);
}

.activity-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.activity-content {
  flex: 1;
}

.activity-content p {
  color: #fff;
  margin-bottom: 0.5rem;
}

.activity-content strong {
  color: #00d4aa;
}

.activity-time {
  color: #888;
  font-size: 0.9rem;
}

.activity-prize {
  color: #00d4aa;
  font-weight: 600;
  background: rgba(0, 212, 170, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

/* About Content */
.about-content {
  padding: 80px 0;
  background: #0a0a0a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-text p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #111;
}

.values-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #ccc;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.team-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #00d4aa;
}

.member-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-title {
  color: #00d4aa;
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-info p {
  color: #ccc;
  line-height: 1.6;
}

/* Achievements */
.achievements {
  padding: 80px 0;
  background: #111;
}

.achievements h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.achievement-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-year {
  background: #00d4aa;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.achievement-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.achievement-card p {
  color: #ccc;
}

/* Contact Content */
.contact-content {
  padding: 80px 0;
  background: #0a0a0a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info > p {
  color: #ccc;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 10px;
  border: 1px solid #333;
}

.method-icon {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.method-info h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.method-info p {
  color: #00d4aa;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.method-info span {
  color: #888;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #333;
}

.contact-form h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ccc;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4aa;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #ccc;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #111;
}

.faq-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #333;
}

.faq-item h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: #00d4aa;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d4aa;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #ccc;
  text-decoration: none;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00d4aa;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #ccc;
  line-height: 1.6;
}

/* Help Center Styles */
.help-search {
  padding: 40px 0;
  background: #111;
}

.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
}

.search-box input:focus {
  outline: none;
}

.search-btn {
  padding: 15px 20px;
  background: #00d4aa;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.help-categories {
  padding: 80px 0;
  background: #0a0a0a;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.category-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.category-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-card ul {
  list-style: none;
}

.category-card ul li {
  margin-bottom: 0.5rem;
}

.category-card ul li a {
  color: #00d4aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-card ul li a:hover {
  color: #fff;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #333;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-toggle {
  color: #00d4aa;
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Contact Support */
.contact-support {
  padding: 80px 0;
  background: #111;
}

.support-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid #333;
}

.support-card h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.support-card p {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-method {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid #444;
}

.support-method .method-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-method h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.support-method p {
  color: #00d4aa;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Legal Document Styles */
.legal-content {
  padding: 80px 0;
  background: #0a0a0a;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid #333;
}

.legal-document .section {
  margin-bottom: 2.5rem;
}

.legal-document h2 {
  color: #00d4aa;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-document h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}

.legal-document p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-document ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-document ul li {
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-document strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    border-top: 1px solid #333;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding-top: 100px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .games-grid,
  .games-grid-large {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .support-methods {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 2rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .modal-content {
    padding: 20px;
    margin: 20px;
  }

  .modal-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-document {
    padding: 1.5rem;
  }

  .support-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-card,
.tournament-card,
.feature-card,
.player-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Hidden class for modal */
.hidden {
  display: none !important;
}
