:root {
  --primary: #8B3A3A;
  --primary-dark: #6B2A2A;
  --primary-light: #A84A4A;
  --brick-red: #B84C4C;
  --urban-gray: #2C3E50;
  --urban-gray-dark: #1A252F;
  --urban-gray-light: #34495E;
  --after-rain-gray: #7F8C8D;
  --text-light: #ECF0F1;
  --text-muted: #95A5A6;
  --bg-dark: #1E1E1E;
  --bg-darker: #141414;
  --accent: #E67E22;
  --success: #27AE60;
  --warning: #F39C12;
  --border: #3E3E3E;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: 'Gupter', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Texturina', serif;
}

a {
  color: var(--brick-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--brick-red) 0%, var(--primary) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

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

.btn-secondary:hover {
  background: var(--brick-red);
  color: white;
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.2rem;
}

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

section {
  padding: 80px 0;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: var(--brick-red);
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 4px;
  text-transform: uppercase;
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: url('img/icon.png') center/contain no-repeat;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brick-red);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--urban-gray-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  display: none;
  box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--urban-gray-light);
  color: var(--brick-red);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

footer {
  background: var(--urban-gray-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: var(--brick-red);
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
}

.disclaimer-block {
  background: var(--urban-gray);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.disclaimer-line {
  display: block;
  margin-bottom: 8px;
}

.footer-copyright {
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  text-align: center;
  background: url('img/hero.png') center/cover no-repeat;
  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"><rect x="10" y="20" width="80" height="60" fill="%238B3A3A20" stroke="%238B3A3A30" stroke-width="1"/><rect x="15" y="25" width="10" height="10" fill="%238B3A3A15"/><rect x="30" y="25" width="10" height="10" fill="%238B3A3A15"/><rect x="45" y="25" width="10" height="10" fill="%238B3A3A15"/><rect x="60" y="25" width="10" height="10" fill="%238B3A3A15"/><rect x="75" y="25" width="10" height="10" fill="%238B3A3A15"/></svg>') center/cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brick-red) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  display: inline-block;
  background: var(--urban-gray);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--urban-gray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brick-red);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brick-red) 0%, var(--primary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

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

.about-section {
  background: var(--urban-gray-dark);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.how-to-play {
  max-width: 900px;
  margin: 0 auto;
}

.steps-list {
  counter-reset: step;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--urban-gray);
  border-radius: 10px;
  border-left: 4px solid var(--brick-red);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--brick-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.not-box {
  background: var(--urban-gray-dark);
  border: 2px solid var(--brick-red);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.not-box h4 {
  color: var(--brick-red);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.not-box ul {
  list-style: none;
  margin-bottom: 20px;
}

.not-box li {
  padding: 10px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.not-box li::before {
  content: '✗';
  color: var(--brick-red);
  font-weight: bold;
}

.game-preview {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.game-preview-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--brick-red);
}

.game-preview-image {
  width: 100%;
  max-width: 700px;
  height: 400px;
  background: url('img/play1.jpg') center/cover no-repeat;
  border-radius: 12px;
  margin: 0 auto 40px;
  border: 3px solid var(--brick-red);
  position: relative;
  overflow: hidden;
}

.game-preview-image::before {
  content: '';
}

.game-play-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.play-step {
  flex: 1;
  min-width: 200px;
  padding: 25px;
  background: var(--urban-gray);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.play-step h4 {
  color: var(--brick-red);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.play-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--urban-gray);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--brick-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--urban-gray);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-question:hover {
  background: var(--urban-gray-light);
}

.faq-answer {
  padding: 0 25px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  border-bottom: 1px solid var(--border);
}

.game-legal-block {
  background: var(--urban-gray);
  border: 2px solid var(--brick-red);
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
  margin-bottom: 30px;
}

.game-legal-block p {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--brick-red);
}

.game-legal-block p:last-child {
  margin-bottom: 0;
}

.game-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.game-iframe {
  width: 100%;
  max-width: 900px;
  height: 600px;
  border: 3px solid var(--brick-red);
  border-radius: 12px;
  background: var(--bg-darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--urban-gray);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  color: var(--brick-red);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-info-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.contact-form {
  background: var(--urban-gray);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--urban-gray-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brick-red);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.common-issues {
  margin-top: 40px;
}

.common-issues h3 {
  color: var(--brick-red);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.common-issues ul {
  list-style: none;
}

.common-issues li {
  padding: 15px;
  background: var(--urban-gray-dark);
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 3px solid var(--brick-red);
}

.common-issues li strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 5px;
}

.common-issues li p {
  color: var(--text-muted);
  margin: 0;
}

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

.policy-section {
  margin-bottom: 40px;
}

.policy-section h3 {
  color: var(--brick-red);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.policy-section p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-section ul {
  list-style: none;
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-section ul li {
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.policy-section ul li::before {
  content: '•';
  color: var(--brick-red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.responsible-banner {
  background: linear-gradient(135deg, var(--brick-red) 0%, var(--primary) 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.responsible-banner h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.responsible-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.help-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.help-resource {
  background: var(--urban-gray);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--brick-red);
  text-align: center;
}

.help-resource h4 {
  color: var(--brick-red);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.help-resource p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.help-resource .phone {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .game-play-steps {
    flex-direction: column;
  }

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

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

  .logo {
    font-size: 1.2rem;
  }

  .badge-18 {
    display: none;
  }

  .header-right .btn {
    display: none;
  }
}

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

  .hero-disclaimer {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
