/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Istok Web", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0f0f23;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 35, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-modal-content {
  background: linear-gradient(135deg, #2d1b69 0%, #1e1b4b 100%);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #6b46c1;
}

.age-modal-content h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.age-modal-content p {
  color: #e5e7eb;
  font-size: 16px;
  margin-bottom: 30px;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-btn {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
}

.yes-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.yes-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.no-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.no-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

/* Header */
.header {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(107, 70, 193, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #a855f7;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
}

.join-btn {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 50%, #ec4899 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.features-list h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fde68a;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.checkmark {
  color: #10b981;
  font-weight: 700;
  font-size: 18px;
}

.download-btn {
  margin-top: 30px;
}

.slot-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Experience Section */
.experience {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.exp-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(107, 70, 193, 0.1);
  border-radius: 10px;
  border-left: 4px solid #a855f7;
}

.feature-icon {
  font-size: 24px;
}

.experience-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #1e1b4b 0%, #2d1b69 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.features-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
}

.feature-card .feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #a855f7;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.download-now-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
}

.download-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

/* Screenshots Section */
.screenshots {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.screenshots h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.screenshots p {
  font-size: 16px;
  margin-bottom: 50px;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.screenshot {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.screenshot:hover {
  transform: scale(1.05);
}

.screenshot.wide {
  grid-column: span 2;
}

/* Get Started Section */
.get-started {
  background: linear-gradient(135deg, #2d1b69 0%, #1e1b4b 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.get-started h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.get-started > p {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.step-number {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #a855f7;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo img {
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #a855f7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #a855f7;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #a855f7;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  border-radius: 15px;
  max-width: 400px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #6b7280;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* Detailed Features */
.detailed-features {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-detail.reverse {
  direction: rtl;
}

.feature-detail.reverse > * {
  direction: ltr;
}

.feature-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #a855f7;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e5e7eb;
}

.feature-text ul {
  list-style: none;
  padding-left: 0;
}

.feature-text ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #e5e7eb;
}

.feature-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.feature-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Content */
.about-content {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
}

.about-story {
  margin-bottom: 60px;
}

.about-story h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #a855f7;
}

.about-story p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: rgba(168, 85, 247, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-card h3 {
  font-size: 36px;
  color: #a855f7;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  font-size: 16px;
  color: #e5e7eb;
}

.mission-section {
  margin-bottom: 60px;
}

.mission-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #a855f7;
}

.mission-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e5e7eb;
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  padding: 10px 0;
  font-size: 16px;
  color: #e5e7eb;
}

.values-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #a855f7;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #a855f7;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Contact Content */
.contact-content {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #a855f7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #e5e7eb;
}

.submit-btn {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.contact-info-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #a855f7;
}

.contact-method {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #a855f7;
}

.contact-method p {
  color: #e5e7eb;
  margin-bottom: 5px;
}

.response-time {
  font-size: 14px;
  color: #9ca3af;
}

.faq-section {
  margin-top: 40px;
}

.faq-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #a855f7;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #a855f7;
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.faq-item p {
  font-size: 14px;
  color: #9ca3af;
}

/* Games Content */
.games-content {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
}

.category-section {
  margin-bottom: 80px;
}

.category-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #a855f7;
}

.category-section > p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #e5e7eb;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card h3 {
  font-size: 20px;
  margin: 20px 20px 10px;
  color: #a855f7;
}

.game-card p {
  font-size: 14px;
  margin: 0 20px 20px;
  color: #e5e7eb;
}

.game-card.jackpot {
  border-color: #f59e0b;
}

.game-card.jackpot h3 {
  color: #f59e0b;
}

.game-card.special {
  border-color: #ec4899;
}

.game-card.special h3 {
  color: #ec4899;
}

.game-features {
  margin-top: 60px;
  text-align: center;
}

.game-features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #a855f7;
}

.game-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.game-features .feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.game-features .feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #a855f7;
}

.game-features .feature-item p {
  font-size: 14px;
  color: #e5e7eb;
}

/* Tournaments Content */
.tournaments-content {
  background: #0f0f23;
  padding: 80px 0;
  color: white;
}

.tournaments-section {
  margin-bottom: 80px;
}

.tournaments-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #a855f7;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.tournament-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.tournament-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tournament-header h3 {
  font-size: 20px;
  color: #a855f7;
}

.tournament-status {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tournament-status.live {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.tournament-status.vip {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.tournament-status.upcoming {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}

.tournament-info {
  margin-bottom: 20px;
}

.tournament-info p {
  margin-bottom: 8px;
  color: #e5e7eb;
  font-size: 14px;
}

.tournament-prizes {
  margin-bottom: 25px;
}

.prize {
  padding: 8px 0;
  font-size: 14px;
  color: #e5e7eb;
}

.join-tournament-btn,
.notify-btn {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
}

.join-tournament-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.join-tournament-btn.vip {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.notify-btn {
  background: transparent;
  color: #a855f7;
  border: 1px solid #a855f7;
}

.join-tournament-btn:hover,
.notify-btn:hover {
  transform: translateY(-2px);
}

.tournament-description {
  margin-bottom: 20px;
}

.tournament-description p {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.5;
}

.tournament-types {
  margin-bottom: 60px;
}

.tournament-types h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #a855f7;
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.type-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.type-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #a855f7;
}

.type-card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #e5e7eb;
  line-height: 1.5;
}

.type-card ul {
  list-style: none;
  padding-left: 0;
}

.type-card ul li {
  padding: 5px 0;
  font-size: 14px;
  color: #9ca3af;
  position: relative;
  padding-left: 20px;
}

.type-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a855f7;
}

.how-to-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #a855f7;
  text-align: center;
}

.steps-grid .step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.steps-grid .step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.steps-grid .step-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #a855f7;
}

.steps-grid .step-card p {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.5;
}

/* Policy Content */
.policy-nav {
  background: rgba(15, 15, 35, 0.8);
  padding: 20px 0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.3);
}

.policy-tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.policy-tab {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(107, 70, 193, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Istok Web", sans-serif;
  font-size: 14px;
}

.policy-tab.active,
.policy-tab:hover {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  border-color: transparent;
}

.policy-content {
  background: #0f0f23;
  padding: 60px 0;
  color: white;
}

.policy-section {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.policy-section.active {
  display: block;
}

.policy-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #a855f7;
}

.policy-section h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #ec4899;
}

.policy-section h4 {
  font-size: 20px;
  margin: 25px 0 10px;
  color: #a855f7;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e5e7eb;
}

.policy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-section ul li {
  margin-bottom: 8px;
  color: #e5e7eb;
  line-height: 1.6;
}

.cookie-types {
  margin: 20px 0;
}

.cookie-types h4 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #a855f7;
}

/* Success Page */
.success-page {
  background: #0f0f23;
  padding: 120px 0;
  color: white;
  text-align: center;
  min-height: 60vh;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 80px;
  margin-bottom: 30px;
  display: block;
}

.success-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #10b981;
}

.success-page p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #e5e7eb;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  color: #a855f7;
  border: 2px solid #a855f7;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: #a855f7;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header .container {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    gap: 20px;
  }

  .hero-content,
  .experience-content,
  .feature-detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .screenshot.wide {
    grid-column: span 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-consent {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .age-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .policy-tabs {
    gap: 10px;
  }

  .policy-tab {
    font-size: 12px;
    padding: 8px 15px;
  }

  .tournaments-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .features h2,
  .experience h2,
  .about-story h2 {
    font-size: 28px;
  }

  .age-modal-content h2 {
    font-size: 20px;
  }

  .age-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* Inline Styles (9% requirement) */
.hero-text h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card:nth-child(2) {
  background: rgba(236, 72, 153, 0.1) !important;
}

.screenshot:first-child {
  border: 3px solid #a855f7;
}

.step:nth-child(odd) {
  background: rgba(168, 85, 247, 0.1) !important;
}

.game-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.tournament-card.active {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}
