:root {
  --primary-color: #dc2626;
  --secondary-color: #b91c1c;
  --accent-color: #ef4444;
  --dark-bg: #111827;
  --light-bg: #f9fafb;
  --text-dark: #111827;
  --text-light: #f9fafb;
  --text-gray: #6b7280;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", cursive;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Roboto", sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.age-modal.active {
  display: flex;
}

.age-modal-content {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-modal-icon {
  font-size: 80px;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.age-modal-content h2 {
  font-size: 36px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.age-modal-content p {
  color: #9ca3af;
  font-size: 18px;
  margin-bottom: 10px;
}

.age-modal-subtext {
  font-size: 14px !important;
  color: #6b7280;
}

.age-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-age-yes,
.btn-age-no {
  flex: 1;
  min-width: 180px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-age-yes {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
}

.btn-age-yes:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-age-no {
  background: transparent;
  color: white;
  border: 2px solid #374151;
}

.btn-age-no:hover {
  background: #374151;
  border-color: #4b5563;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--primary-color);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content i {
  font-size: 30px;
  color: var(--primary-color);
}

.cookie-content p {
  flex: 1;
  color: var(--text-light);
  margin: 0;
  min-width: 250px;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn-accept-cookies {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept-cookies:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.header {
  position: sticky;
  top: 0;
  background: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar {
  padding: 15px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", cursive;
  font-size: 28px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo i {
  font-size: 32px;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.btn-login {
  padding: 10px 25px;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-login:hover {
  background: var(--primary-color);
}

.btn-register {
  padding: 10px 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
  overflow: hidden;
  padding: 100px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(31, 41, 55, 0.9) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(220, 38, 38, 0.03) 35px,
      rgba(220, 38, 38, 0.03) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(220, 38, 38, 0.03) 35px,
      rgba(220, 38, 38, 0.03) 70px
    );
  opacity: 0.5;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 80px;
  color: var(--text-light);
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .highlight {
  color: var(--primary-color);
  display: block;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: transparent;
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-3px);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.trust-badge {
  text-align: center;
  padding: 25px;
  background: rgba(220, 38, 38, 0.05);
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.trust-number {
  font-family: "Bebas Neue", cursive;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.trust-label {
  font-size: 14px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-decoration {
  position: absolute;
  bottom: -100px;
  right: -100px;
  font-size: 400px;
  color: rgba(220, 38, 38, 0.05);
  z-index: 1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 14px;
}

.section-title {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-description {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  padding: 40px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  font-size: 36px;
  color: white;
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

.games {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
}

.games .section-title {
  color: var(--text-light);
}

.games .section-description {
  color: #9ca3af;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card.featured {
  border-color: var(--primary-color);
  background: rgba(220, 38, 38, 0.05);
}

.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(220, 38, 38, 0.2);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-badge.popular {
  background: var(--primary-color);
  color: white;
}

.game-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  font-size: 36px;
  color: white;
}

.game-title {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.game-description {
  color: #9ca3af;
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 60px;
}

.game-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.game-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  font-size: 14px;
}

.game-feature i {
  color: var(--primary-color);
}

.btn-game {
  display: inline-block;
  width: 100%;
  padding: 14px 30px;
  background: transparent;
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-game:hover {
  background: var(--primary-color);
}

.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 35px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 15px;
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.how-it-works {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
}

.how-it-works .section-title {
  color: var(--text-light);
}

.how-it-works .section-description {
  color: #9ca3af;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  font-family: "Bebas Neue", cursive;
  font-size: 72px;
  color: rgba(220, 38, 38, 0.2);
  margin-bottom: -20px;
}

.step-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  font-size: 40px;
  color: white;
  position: relative;
}

.step-title {
  font-size: 26px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.step-description {
  color: #9ca3af;
  line-height: 1.7;
  padding: 0 15px;
}

.step-connector {
  flex: 0 0 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(220, 38, 38, 0.3) 0%,
    rgba(220, 38, 38, 0.3) 100%
  );
  margin-top: 125px;
  position: relative;
}

.step-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid rgba(220, 38, 38, 0.3);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.faq {
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}

.faq-question h3 {
  font-size: 20px;
  color: var(--text-dark);
  text-transform: none;
  font-weight: 700;
}

.faq-question i {
  font-size: 20px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-gray);
  line-height: 1.8;
}

.contact {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
}

.contact .section-title {
  color: var(--text-light);
}

.contact .section-description {
  color: #9ca3af;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  font-size: 28px;
  color: white;
}

.contact-card h3 {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.contact-card a:hover {
  color: var(--accent-color);
}

.contact-card p {
  color: #9ca3af;
  line-height: 1.6;
}

.cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.03) 35px,
    rgba(255, 255, 255, 0.03) 70px
  );
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 80px;
  color: white;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.cta-title {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 50px;
  background: white;
  color: var(--primary-color);
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4,
.col-lg-2,
.col-lg-3 {
  padding-right: 15px;
  padding-left: 15px;
}

.g-5 {
  gap: 0;
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
}

@media (max-width: 991px) {
  .col-lg-4,
  .col-lg-2,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.site-footer {
  background: var(--dark-bg);
  padding: 60px 0 30px;
  color: var(--text-light);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", cursive;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.footer-logo i {
  font-size: 32px;
}

.site-footer p {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-heading {
  font-family: "Bebas Neue", cursive;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
  font-size: 14px;
}

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

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.5rem;
}

.justify-content-center {
  justify-content: center;
}

.footer-img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.footer-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.footer-img-invert {
  filter: brightness(1.1) invert(1);
}

.footer-bottom {
  padding-top: 30px;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6b7280;
  font-size: 14px;
}

.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
  padding: 40px 20px;
}

.auth-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Bebas Neue", cursive;
  font-size: 36px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.auth-logo i {
  font-size: 40px;
  color: var(--primary-color);
}

.auth-title {
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.auth-subtitle {
  color: #9ca3af;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.form-group input {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
}

.form-checkbox label {
  color: #9ca3af;
  font-size: 14px;
  text-transform: none;
}

.btn-submit {
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  color: #9ca3af;
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 500;
}

.auth-footer a:hover {
  color: var(--accent-color);
}

.legal-page {
  padding: 120px 0 80px;
  background: white;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
}

.legal-title {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.legal-updated {
  color: var(--text-gray);
  font-size: 16px;
}

.legal-content h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.legal-content h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin: 30px 0 15px;
  text-transform: uppercase;
}

.legal-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    padding: 20px;
    gap: 15px;
    border-top: 2px solid var(--primary-color);
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .steps-container {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

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

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

  .cta-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .auth-container {
    padding: 30px 20px;
  }

  .footer-img {
    max-width: 120px;
  }
}
