:root {
  --primary-color: #ff1493;
  --secondary-color: #9d4edd;
  --accent-color: #00d4ff;
  --background-dark: #0a0a0a;
  --background-gradient: linear-gradient(
    135deg,
    #1a0033 0%,
    #330066 50%,
    #660099 100%
  );
  --text-light: #ffffff;
  --text-muted: #cccccc;
  --border-color: #333333;
  --success-color: #00ff88;
  --warning-color: #ffaa00;
  --error-color: #ff4444;
}

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

body {
  font-family: "Ubuntu", sans-serif;
  background: var(--background-gradient);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Tourney", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-lin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav.mobile-open {
  display: block;
  position: absolute;
  
  top: 60px;
  width: 100%;
  left: 0;
  height: 100%;
  .nav-list {
    display: flex;
flex-direction: column;
align-items: center;
  gap: 30px;
  background-color: black;
  }
}

.cta-button {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

main {
  margin-top: 80px;
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: "Tourney", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 20, 147, 0.4);
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(255, 20, 147, 0.3));
}

.features {
  padding: 4rem 0;
  text-align: center;
}

.features h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.features p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.game-showcase {
  padding: 4rem 0;
  text-align: center;
}

.showcase-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.player-hooks {
  padding: 4rem 0;
  text-align: center;
}

.player-hooks h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.player-hooks p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.hook-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.hook-item:hover {
  transform: translateY(-5px);
}

.hook-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hook-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.game-gallery {
  padding: 4rem 0;
  text-align: center;
}

.game-gallery h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.game-gallery p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.gallery-item.featured {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.how-to-play {
  padding: 4rem 0;
  text-align: center;
}

.how-to-play h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.how-to-play p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.step-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(255, 20, 147, 0.3));
}

.final-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Tourney", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-accept,
.cookie-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.cookie-learn-more {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-page {
  padding: 2rem 0;
}

.legal-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-hero h1 {
  font-family: "Tourney", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-section h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 3rem;
}

.success-page {
  padding: 4rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.success-content h1 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--success-color);
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.contact-page {
  padding: 2rem 0;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  font-family: "Tourney", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-methods {
  display: grid;
  gap: 2rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-method h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

.faq-section {
  margin-top: 4rem;
}

.faq-section h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.games-page {
  padding: 2rem 0;
}

.games-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.games-hero h1 {
  font-family: "Tourney", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-color: transparent;
}

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

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.play-btn {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.game-features {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(255, 20, 147, 0.2);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.games-features {
  margin-bottom: 4rem;
}

.games-features h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.download-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-section h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.promotions-page {
  padding: 2rem 0;
}

.promotions-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.promotions-hero h1 {
  font-family: "Tourney", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.featured-promotion {
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(157, 78, 221, 0.1)
  );
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 20px;
  padding: 1.6rem;
  margin-bottom: 4rem;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promo-text h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.bonus-list {
  list-style: none;
  margin: 2rem 0;
}

.bonus-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.bonus-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  text-align: center;
}

.promo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.promo-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.promotion-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.promo-rewards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.promo-rewards span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.promo-btn {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.promo-btn:hover {
  transform: translateY(-2px);
}

.loyalty-program {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.6rem;
  margin-bottom: 4rem;
  text-align: center;
}

.loyalty-program h2 {
  font-family: "Tourney", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

.vip-tier {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.vip-tier.featured {
  border-color: var(--primary-color);
  background: rgba(255, 20, 147, 0.1);
}

.tier-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vip-tier h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vip-tier ul {
  list-style: none;
  text-align: left;
}

.vip-tier li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.vip-tier li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.promo-terms {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.6rem;
}

.promo-terms h2 {
  font-family: "Tourney", cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.terms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.terms-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.terms-section ul {
  margin-left: 1.5rem;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cookie-type {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-type h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

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

  .gallery-item.featured {
    grid-column: span 1;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .promo-content {
    grid-template-columns: 1fr;
  }

  .terms-content {
    grid-template-columns: 1fr;
  }

  .vip-tiers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .games-filters {
    flex-direction: column;
    align-items: center;
  }

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

  .success-actions {
    flex-direction: column;
  }
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.age-modal-content {
  background: #1F0C2E;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  margin: 1rem;
  color: white;
}

.age-modal-content h2 {
  margin-bottom: 1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-confirm {
  background: #45A227;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.btn-deny {
  background: #D61566
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.age-error {
  margin-top: 1rem;
  border-radius: 5px;
}
