:root {
  --red-primary: #dc3545;
  --red-dark: #c82333;
  --dark-bg: #1a1a1a;
  --dark-gray: #2d2d2d;
  --light-gray: #cccccc;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.text-red {
  color: var(--red-primary);
}

.bg-red {
  background-color: var(--red-primary);
}

.btn-red {
  background-color: var(--red-primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-red:hover {
  background-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.navbar-brand img {
  height: 40px;
}

.navbar {
  transition: all 0.3s ease;
}

.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--red-primary);
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: absolute;
  text-align: center;
  color: var(--white);
  z-index: 10;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: var(--red-primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.game-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.footer {
  background-color: var(--dark-bg);
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--red-primary);
}

.text-light-gray {
  color: var(--light-gray);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.98);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--red-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-item p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.content-section {
  padding: 60px 0;
}

.bg-light-section {
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-section {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    padding: 0 15px;
  }
}
