/* CSS Variables - Elemental Color Scheme */
:root {
  /* Элементальные цвета из игры */
  --fire-pink: #FF1493;      /* Fire элемент */
  --earth-green: #00FF7F;    /* Earth элемент */
  --water-blue: #00BFFF;     /* Water элемент */
  
  /* Основные */
  --bg-dark: #1A202C;        /* Основной фон */
  --bg-card: #2D3748;        /* Фон блоков (как в игре) */
  --text-primary: #FFFFFF;   /* Основной текст */
  --text-secondary: #A0AEC0; /* Вторичный текст */
  
  /* Акценты */
  --gold: #FFD700;           /* Мультипликаторы, премиум */
  --primary-cta: #00FF7F;    /* Главные CTA */
  --death-purple: #8A2BE2;   /* Предупреждения, риски */
  
  /* Дополнительные цвета */
  --success: #48BB78;
  --danger: #F56565;
  --warning: #ED8936;
  --info: #4299E1;
  
  /* Тени и эффекты */
  --shadow-glow: 0 0 20px rgba(0, 255, 127, 0.3);
  --shadow-fire: 0 0 15px rgba(255, 20, 147, 0.4);
  --shadow-water: 0 0 15px rgba(0, 191, 255, 0.4);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
  
  /* Breakpoints */
  --mobile: 768px;
  --tablet: 1024px;
  --desktop: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--fire-pink), var(--earth-green), var(--water-blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
}

h2 {
  font-size: 2rem;
  color: var(--earth-green);
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--earth-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--fire-pink);
  text-shadow: 0 0 5px currentColor;
}

footer .btn {
    text-align: center !important;
    justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  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.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--earth-green), var(--primary-cta));
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-cta), var(--earth-green));
  box-shadow: 0 0 30px rgba(0, 255, 127, 0.6);
  text-shadow: none;
  transform: translateY(-2px);
  color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--water-blue);
  border: 2px solid var(--water-blue);
}

.btn-secondary:hover {
  background: var(--water-blue);
  color: var(--bg-dark);
  box-shadow: var(--shadow-water);
  transform: translateY(-2px);
  text-shadow: none;
}


.footer-section .btn-secondary i{
  color: var(--water-blue);
}

.footer-section .btn-secondary:hover i{
  color: var(--bg-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #FFA500);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFA500, var(--gold));
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  transform: translateY(-2px);
  color: var(--bg-dark);
  text-shadow: none;
}

.btn-danger {
  background: linear-gradient(135deg, var(--fire-pink), var(--danger));
  color: white;
  box-shadow: var(--shadow-fire);
}

.btn-danger:hover {
  background: linear-gradient(135deg, var(--danger), var(--fire-pink));
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
  transform: translateY(-2px);
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 32, 44, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 127, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.3));
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rtp-badge {
  background: linear-gradient(135deg, var(--earth-green), var(--success));
  color: var(--bg-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.provider {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--earth-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--earth-green);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

header .container {
    max-width: unset;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 32, 44, 0.9) 0%,
        rgba(45, 55, 72, 0.8) 50%,
        rgba(26, 32, 44, 0.9) 100%
    );
    z-index: -1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 32, 44, 0.9) 0%,
    rgba(45, 55, 72, 0.8) 50%,
    rgba(26, 32, 44, 0.9) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
  }
  to {
    text-shadow: 0 0 40px rgba(0, 255, 127, 0.8), 0 0 60px rgba(255, 20, 147, 0.3);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--water-blue);
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 currentColor;
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 transparent;
  }
}

.fire-element {
  background: linear-gradient(135deg, var(--fire-pink), #FF6B6B);
  color: white;
  box-shadow: var(--shadow-fire);
}

.earth-element {
  background: linear-gradient(135deg, var(--earth-green), var(--success));
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.water-element {
  background: linear-gradient(135deg, var(--water-blue), var(--info));
  color: white;
  box-shadow: var(--shadow-water);
}

/* Game Introduction Section */
.game-intro-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.game-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 768px) {
    .game-intro-section {
        padding: 40px 0;
    }
    
    .intro-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Main Content */
.main-content {
  padding: 0;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(45, 55, 72, 0.3);
}

/* Gameplay Section */
.gameplay-section {
  background: linear-gradient(135deg, rgba(45, 55, 72, 0.8), rgba(26, 32, 44, 0.9));
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.game-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--bg-card);
  border: 2px solid var(--earth-green);
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.flow-step i {
  font-size: 1.5rem;
  color: var(--earth-green);
}

.flow-arrow {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.gameplay-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.gameplay-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.gameplay-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.gameplay-image {
  text-align: center;
}

.game-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.game-screenshot:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 255, 127, 0.2);
}

/* Tables */
.table-section {
  background: var(--bg-card);
}

.table-container {
  overflow-x: auto;
  border-radius: 15px;
  background: rgba(26, 32, 44, 0.8);
  margin: 2rem 0;
  border: 1px solid rgba(0, 255, 127, 0.2);
}

.gameplay-table,
.modes-table,
.session-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.gameplay-table th,
.modes-table th,
.session-table th {
  background: linear-gradient(135deg, var(--earth-green), var(--success));
  color: var(--bg-dark);
  padding: 1rem;
  text-align: left;
  font-weight: bold;
}

.gameplay-table td,
.modes-table td,
.session-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(160, 174, 192, 0.2);
  color: var(--text-secondary);
}

.gameplay-table tr:hover,
.modes-table tr:hover,
.session-table tr:hover {
  background: rgba(0, 255, 127, 0.1);
}

.system-name {
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  display: block;
  text-wrap: nowrap;
  text-align: center;
  color: var(--text-primary);
}

.rtp-highlight {
  background: linear-gradient(135deg, var(--earth-green), var(--success));
  color: var(--bg-dark);
}

.death-symbol {
  background: linear-gradient(135deg, var(--death-purple), var(--fire-pink));
  color: white;
}

.table-caption {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.section-cta {
  text-align: center;
  margin: 3rem 0;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(45, 55, 72, 0.8));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fire-pink), var(--earth-green), var(--water-blue));
}

.fire-card:hover {
  border-color: var(--fire-pink);
  box-shadow: var(--shadow-fire);
  transform: translateY(-5px);
}

.earth-card:hover {
  border-color: var(--earth-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

.water-card:hover {
  border-color: var(--water-blue);
  box-shadow: var(--shadow-water);
  transform: translateY(-5px);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-image {
  margin-top: 2rem;
}

.feature-image img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.02);
}

.wild-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.wild-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--earth-green);
  transition: all 0.3s ease;
}

.wild-item.death-warning {
  border-left-color: var(--death-purple);
}

.wild-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.wild-item i {
  font-size: 1.5rem;
  color: var(--earth-green);
  min-width: 30px;
}

.death-warning i {
  color: var(--death-purple);
}

/* Strategy Section */
.strategy-section {
  background: var(--bg-card);
}

.techniques-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.technique-item {
  background: rgba(26, 32, 44, 0.8);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  border: 1px solid rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

.technique-item:hover {
  border-color: var(--earth-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.technique-number {
  background: linear-gradient(135deg, var(--earth-green), var(--success));
  color: var(--bg-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.technique-content h3 {
  color: var(--earth-green);
  margin-bottom: 0.5rem;
}

/* Mode Badges */
.mode-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.mode-badge.easy {
  background: linear-gradient(135deg, var(--success), var(--earth-green));
  color: var(--bg-dark);
}

.mode-badge.medium {
  background: linear-gradient(135deg, var(--warning), var(--gold));
  color: var(--bg-dark);
}

.mode-badge.hard {
  background: linear-gradient(135deg, var(--danger), var(--fire-pink));
  color: white;
}

.modes-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Bankroll Strategy */
.bankroll-section {
  margin: 4rem 0;
  background: rgba(45, 55, 72, 0.5);
  border-radius: 20px;
  padding: 3rem;
}

.bankroll-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tip-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tip-item i {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  min-width: 30px;
}

/* Tech Section */
.tech-section {
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(45, 55, 72, 0.8));
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.tech-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  border: 1px solid rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--earth-green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.tech-item i {
  font-size: 2rem;
  color: var(--earth-green);
}

.tech-images {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.tech-images {
    width: 100%;
}

.tech-screenshot {
  max-width: unset;
  border-radius: 10px;
  width: 100%;
}
.tech-screenshot {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.tech-screenshot:hover {
  transform: scale(1.02);
}

/* Converts Section */
.converts-section {
  background: var(--bg-card);
}

.converts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.convert-item {
  background: rgba(26, 32, 44, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

.convert-item:hover {
  border-color: var(--earth-green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.convert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg-card);
  border: 3px solid var(--earth-green);
}

.rtp-icon {
  background: linear-gradient(135deg, var(--earth-green), var(--success));
  border-color: var(--gold);
}

.rtp-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bg-dark);
}

.tension-icon {
  background: linear-gradient(135deg, var(--fire-pink), var(--danger));
  border-color: var(--fire-pink);
  color: white;
}

.control-icon {
  background: linear-gradient(135deg, var(--gold), var(--warning));
  border-color: var(--gold);
  color: var(--bg-dark);
}

.element-icon {
  background: linear-gradient(135deg, var(--water-blue), var(--info));
  border-color: var(--water-blue);
  color: white;
}

/* Community Section */
.community-section {
  background: linear-gradient(135deg, rgba(45, 55, 72, 0.8), rgba(26, 32, 44, 0.9));
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--earth-green);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--earth-green);
  color: var(--bg-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.testimonial-author {
  color: var(--earth-green);
  font-weight: bold;
  font-size: 0.9rem;
}

.community-image {
  text-align: center;
  margin: 3rem 0;
}

.community-screenshot {
  max-width: 800px;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.community-disclaimer {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-card);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  background: rgba(26, 32, 44, 0.8);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--earth-green);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 127, 0.1);
}

.faq-question i:first-child {
  color: var(--earth-green);
  font-size: 1.2rem;
}

.faq-question span {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-toggle {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
}

.bet-history-image {
  text-align: center;
  margin: 3rem 0;
}

.history-screenshot {
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming */
.responsible-section {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(26, 32, 44, 0.9));
  border-top: 3px solid var(--death-purple);
}

.disclaimer-content {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid var(--death-purple);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.disclaimer-content p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.final-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(0, 255, 127, 0.2);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--earth-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.footer-section i {
  color: var(--earth-green);
  width: 16px;
}

.footer-section .btn-primary i, .footer-section .btn-gold i {
    color: #1A202C;
}



.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(160, 174, 192, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--earth-green);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .logo {
    height: 30px;
  }

  .cta-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .btn {
    padding: 5px 15px;
    font-size: 0.8rem;
  }
  
  .gameplay-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-features {
    gap: 2rem;
  }
  
  .game-flow {
    gap: 0.5rem;
  }
  
  .flow-step {
    min-width: 100px;
    padding: 0.8rem;
  }
}

@media (max-width: 1440px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 32, 44, 0.98);
        border-top: 1px solid rgba(0, 255, 127, 0.2);
        padding: 1rem;
      }
      
      .nav-menu.active {
        display: block;
      }
      
      .nav-links {
        flex-direction: column;
        gap: 1rem;  
        text-align: center;
      }
      
      .mobile-menu-btn {
        display: block;
      }
}

/* Mobile Styles */
@media (max-width: 768px) {

    .cta-buttons {
        order: 3;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .cta-buttons .btn {
        padding: 5px 5px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    
  
  .header-content {
    gap: 1rem;
  }
  
  .hero {
    margin-top: 70px;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .game-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .converts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .wild-features {
    grid-template-columns: 1fr;
  }
  
  .bankroll-tips {
    grid-template-columns: 1fr;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
  
  .technique-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .modes-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .final-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .table-container {
    font-size: 0.9rem;
  }
  
  .table-container th,
  .table-container td {
    padding: 0.8rem 0.5rem;
    text-wrap: nowrap;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .tech-images {
    grid-template-columns: 1fr;
  }

  .bankroll-section {
    padding: 20px;
  }

  .btn-secondary {
    display: none;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .converts-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .convert-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .technique-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .logo {
    height: 30px;
  }
  
  .game-info {
    font-size: 0.8rem;
  }
  
  .rtp-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .provider {
    font-size: 0.6rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid var(--earth-green);
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.section.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.section.animate.visible {
  opacity: 1;
  transform: translateY(0);
} 