/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 1 !important;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e8e8f0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #f0f0f8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(45deg, #ffd700, #ff6b9d, #c44569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b9d, #c44569, #ffd700);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #4a90e2, #357abd);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-large {
  padding: 18px 45px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* ===== MODALS ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-header {
  margin-bottom: 20px;
}

.modal-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 20px;
  z-index: 999;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #e8e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(45deg, #ffd700, #ff6b9d);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #ffd700;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #e8e8f0;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
      ellipse at top,
      rgba(255, 107, 157, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(196, 69, 105, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInLeft 1s ease-out;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.disclaimer {
  font-size: 0.9rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  border-left: 3px solid #ffd700;
  margin: 20px 0;
  border-radius: 5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ===== GAME SECTION ===== */
.game-section {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.game-section h2 {
  background: linear-gradient(45deg, #4a90e2, #357abd, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-container {
  margin: 40px 0;
  text-align: center;
  position: relative;
}

.game-iframe {
  width: 100%;
  max-width: 900px;
  height: 600px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: #000;
}

.game-buttons {
  margin-top: 30px;
  text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  list-style: none;
  margin-top: 30px;
}

.about-features li {
  padding: 12px 0;
  position: relative;
  padding-left: 30px;
}

.about-features li::before {
  content: "✨";
  position: absolute;
  left: 0;
  color: #ffd700;
}

.game-preview {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 107, 157, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(196, 69, 105, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b9d, #c44569);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ===== MECHANICS SECTION ===== */
.mechanics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.mechanics-content {
  display: grid;
  gap: 40px;
  margin-top: 60px;
}

.mechanic-item {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(53, 122, 189, 0.1) 100%
  );
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid #4a90e2;
  transition: all 0.3s ease;
}

.mechanic-item:hover {
  transform: translateX(10px);
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.15) 0%,
    rgba(53, 122, 189, 0.15) 100%
  );
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.audience-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding: 20px 16px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.advantages-content {
  display: grid;
  gap: 30px;
  margin-top: 60px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(15px);
  border-color: rgba(255, 215, 0, 0.3);
}

.advantage-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffd700, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
}

.advantage-text {
  flex: 1;
}

/* ===== LEADERBOARD SECTION ===== */
.leaderboard-section {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at top,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.leaderboard {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.leaderboard-header {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  gap: 20px;
  padding: 20px 30px;
  background: linear-gradient(45deg, #ff6b9d, #c44569);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.leaderboard-item:hover {
  background: rgba(255, 215, 0, 0.1);
}

.leaderboard-item.gold {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 215, 0, 0.1) 100%
  );
}

.leaderboard-item.silver {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.2) 0%,
    rgba(192, 192, 192, 0.1) 100%
  );
}

.leaderboard-item.bronze {
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.2) 0%,
    rgba(205, 127, 50, 0.1) 100%
  );
}

.leaderboard-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.3s ease;
  position: relative;
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(45deg, #ffd700, #ff6b9d, #4a90e2);
  border-radius: 20px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffd700, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at bottom left,
      rgba(196, 69, 105, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 215, 0, 0.3);
  font-family: serif;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.review-info h4 {
  margin: 0;
  font-size: 1rem;
}

.review-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== GUIDE SECTION ===== */
.guide-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.guide-steps {
  margin-top: 60px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(15px);
  border-color: rgba(255, 215, 0, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b9d, #c44569);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.step-content {
  flex: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(74, 144, 226, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.faq-list {
  max-width: 1200px;
  margin: 60px auto 0;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffd700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

/* ===== NEWS SECTION ===== */
.news-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.news-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.news-date {
  color: #4a90e2;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: #ff6b9d;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  padding: 100px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(255, 107, 157, 0.2) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffd700" opacity="0.6"><animate attributeName="r" values="1;3;1" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23ff6b9d" opacity="0.4"><animate attributeName="r" values="1.5;4;1.5" dur="3s" repeatCount="indefinite"/></circle></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-disclaimer {
  opacity: 0.8;
  font-style: italic;
  margin-top: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item strong {
  color: #ffd700;
  display: block;
  margin-bottom: 8px;
}

.contact-item a {
  color: #4a90e2;
  text-decoration: none;
}

.contact-item a:hover {
  color: #ffd700;
}

.newsletter-signup {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(53, 122, 189, 0.1) 100%
  );
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.newsletter-form {
  margin-top: 30px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #e8e8f0;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(232, 232, 240, 0.6);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 2px;
  margin-bottom: 20px;
}

.newsletter-consent a {
  color: #ffd700;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
  padding: 20px 0 20px;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  color: #e8e8f0;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-column a:hover {
  color: #ffd700;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 80%;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

  .nav-menu .nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-color);
    transform: translateX(10px);
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
  }

  .mobile-menu-btn:hover {
    color: var(--gold-color);
    transform: scale(1.1);
  }

  .mobile-menu-btn.active {
    color: var(--gold-color);
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .game-iframe {
    height: 400px;
  }

  .features-grid,
  .audience-grid,
  .reviews-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .leaderboard-header,
  .leaderboard-item {
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr;
    gap: 10px;
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .advantage-item,
  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    max-width: 100%;
  }

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

  .modal-content {
    margin: 10px;
    padding: 30px 20px;
  }

  .modal-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .game-iframe {
    height: 300px;
  }

  .feature-card,
  .audience-card,
  .review-card,
  .news-card {
    padding: 20px 10px;
  }

  .leaderboard-header,
  .leaderboard-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .leaderboard-header span,
  .leaderboard-item span {
    padding: 5px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(45deg, #ffd700, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

/* ===== LOADING STATES ===== */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

/* ===== GAME PAGE STYLES ===== */
.game-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.game-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.game-header {
  text-align: center;
  margin-bottom: 2rem;
}

.game-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffb6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.3);
}

.game-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.game-disclaimer {
  font-size: 0.9rem;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.game-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#game-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
  background: #000;
}

.game-error {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.error-content h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.error-content p {
  margin-bottom: 2rem;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.game-info {
  margin-top: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
  color: var(--gold-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card strong {
  color: var(--primary-color);
}

/* Game Page Responsive */
@media (max-width: 768px) {
  .game-title {
    font-size: 2rem;
  }

  .game-container {
    padding: 1rem;
  }

  #game-iframe {
    height: 400px;
  }

  .game-controls {
    flex-direction: column;
    align-items: center;
  }

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

/* ===== NEWS MODAL STYLES ===== */
.news-modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.news-modal-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  margin: 5% auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease-out;
}

.news-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--text-light);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.news-modal-close:hover,
.news-modal-close:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.news-modal-header {
  background: linear-gradient(45deg, var(--primary-color), var(--pink-color));
  padding: 2rem;
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.news-modal-header .news-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.news-modal-header h2 {
  color: white;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.news-modal-body {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
  color: var(--text-light);
  line-height: 1.7;
}

.news-modal-body h3 {
  color: var(--gold-color);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.news-modal-body p {
  margin-bottom: 1rem;
  text-align: justify;
}

.news-modal-body ul,
.news-modal-body ol {
  margin: 1rem 0 1rem 1.5rem;
}

.news-modal-body li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.news-modal-body strong {
  color: var(--primary-color);
  font-weight: 600;
}

.news-modal-body blockquote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
  border-radius: 0 8px 8px 0;
}

/* Custom scrollbar for modal body */
.news-modal-body::-webkit-scrollbar {
  width: 6px;
}

.news-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.news-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.news-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

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

/* News Modal Responsive */
@media (max-width: 768px) {
  .news-modal-content {
    margin: 2% auto;
    width: 95%;
    max-height: 95vh;
  }

  .news-modal-header {
    padding: 1.5rem 1rem;
  }

  .news-modal-header h2 {
    font-size: 1.4rem;
  }

  .news-modal-body {
    padding: 1.5rem 1rem;
    max-height: 70vh;
  }

  .news-modal-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* ===== FOOTER BADGES STYLES ===== */
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-badge {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.footer-badge:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.footer-badge-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-badge-link:hover {
  transform: translateY(-2px);
}

/* Responsive adjustments for footer badges */
@media (max-width: 768px) {
  .footer-badges {
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-badge {
    height: 35px;
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .contact-info,
  .newsletter-signup {
    padding: 10px;
  }

  .footer-badges {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .footer-badge {
    height: 30px;
    max-width: 80px;
  }
}

/* ===== SIMPLE HEADER STYLES ===== */
.simple-header .nav-container {
  justify-content: space-between;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
}

.back-button:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  color: var(--gold-color);
  transform: translateX(-2px);
}

@media (max-width: 768px) {
  .back-button span:last-child {
    display: none;
  }
}

/* ===== POLICY HEADER STYLES ===== */
.policy-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.policy-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffd700;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.policy-logo:hover {
  color: #fff;
  transform: scale(1.02);
}

.policy-logo img {
  height: 40px;
  width: auto;
}

.policy-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e8e8f0;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
}

.policy-back-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  color: #ffd700;
  transform: translateX(-2px);
}

@media (max-width: 768px) {
  .policy-header-content {
    padding: 0 15px;
  }

  .policy-logo span {
    display: none;
  }

  .policy-back-btn span:last-child {
    display: none;
  }
}
