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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background-color: #0a1628;
  color: #c8d8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 54px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.header-cta:hover {
  background: #e8f0fc;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: rgba(8, 18, 34, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 24px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-nav a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-cta {
  display: block;
  text-align: center;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-cta:hover {
  background: #e8f0fc;
}

#hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1628;
}

#hero::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: url('../img/hero-bg.jpg') center / cover no-repeat;
  filter: blur(4px);
  opacity: 0.22;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(10, 22, 40, 0.75) 0%, rgba(7, 18, 32, 0.85) 60%, rgba(4, 12, 22, 0.92) 100%);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.1;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #2a6acd, transparent 70%);
  top: -200px;
  left: -150px;
  animation: orb-float 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #1a3a8a, transparent 70%);
  bottom: -100px;
  right: -80px;
  animation: orb-float 10s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #ffffff, transparent 70%);
  top: 50%;
  left: 50%;
  opacity: 0.04;
  animation: orb-float-center 10s ease-in-out infinite;
  animation-delay: -2s;
}

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

@keyframes orb-float-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 18px)) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 48px 40px;
  display: flex;
  align-items: center;
  gap: 72px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-right {
  flex: 0 0 340px;
  width: 340px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50c878;
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(80, 200, 120, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(80, 200, 120, 0); }
}

.hero-title {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title .brand-accent {
  color: #ffffff;
  text-shadow: 0 0 60px rgba(100, 160, 255, 0.45);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 44px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.hero-list li::before {
  content: '✓';
  color: #50c878;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 44px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.18);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e8f0fc;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
  white-space: nowrap;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  max-width: 100px;
  line-height: 1.3;
}

.live-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.live-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50c878;
  flex-shrink: 0;
  animation: live-pulse-anim 2s ease-in-out infinite;
}

@keyframes live-pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(80, 200, 120, 0.6); }
  50% { box-shadow: 0 0 0 5px rgba(80, 200, 120, 0); }
}

.live-counters {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}

.live-counter {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
}

.live-counter-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.live-counter-val {
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.live-counter-name {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.live-feed-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.live-feed {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  min-height: 116px;
  overflow: hidden;
}

.live-feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 12px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.live-feed-item.lf-new {
  transform: translateY(-6px);
  opacity: 0;
}

.lf-user {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  width: 38px;
  font-size: 11px;
}

.lf-game {
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lf-amount {
  color: #50c878;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
}

.live-cta {
  display: block;
  text-align: center;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.2px;
}

.live-cta:hover {
  background: #e8f0fc;
  transform: translateY(-1px);
}

section {
  padding: 96px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.section-header {
  margin-bottom: 0;
}

#bonus {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f38 50%, #0a1628 100%);
  position: relative;
}

#bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

.bonus-card {
  flex: 1;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.04);
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.bonus-card.featured {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.bonus-card.featured::before {
  content: 'Популярный';
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #0a1628;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.bonus-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.bonus-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
  line-height: 1.5;
}

.bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.bonus-features li::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background: rgba(80, 200, 120, 0.12);
  border: 1px solid rgba(80, 200, 120, 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2350c878' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.bonus-cta {
  display: block;
  text-align: center;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.bonus-cta:hover {
  background: #e8f0fc;
  transform: translateY(-1px);
}

#games {
  background: #0a1628;
  position: relative;
}

#games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.games-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.games-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.games-count span {
  color: #ffffff;
  font-weight: 700;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.slot-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #0d1f38;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

.slot-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  z-index: 2;
}

.slot-card img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  transition: filter 0.3s, transform 0.3s;
  min-height: 0;
}

.slot-card:hover img {
  filter: brightness(1.08) saturate(1.1);
  transform: scale(1.04);
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 18, 34, 0.92) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  gap: 8px;
}

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

.slot-provider {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-play-btn {
  display: block;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 7px;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}

.slot-play-btn:hover {
  background: #e8f0fc;
}

.slot-info {
  padding: 10px 12px 12px;
  background: rgba(8, 18, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}

.slot-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-rtp {
  font-size: 10px;
  font-weight: 600;
  color: #50c878;
  white-space: nowrap;
  flex-shrink: 0;
}

.games-more {
  text-align: center;
  margin-top: 40px;
}

#features {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f38 50%, #0a1628 100%);
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--fc-color, rgba(255, 255, 255, 0.3));
  transition: opacity 0.3s;
}

.feature-card:nth-child(1) { --fc-color: #3b82f6; --fc-bg: rgba(59, 130, 246, 0.12); --fc-border: rgba(59, 130, 246, 0.3); }
.feature-card:nth-child(2) { --fc-color: #10b981; --fc-bg: rgba(16, 185, 129, 0.12); --fc-border: rgba(16, 185, 129, 0.3); }
.feature-card:nth-child(3) { --fc-color: #8b5cf6; --fc-bg: rgba(139, 92, 246, 0.12); --fc-border: rgba(139, 92, 246, 0.3); }
.feature-card:nth-child(4) { --fc-color: #f59e0b; --fc-bg: rgba(245, 158, 11, 0.12); --fc-border: rgba(245, 158, 11, 0.3); }
.feature-card:nth-child(5) { --fc-color: #14b8a6; --fc-bg: rgba(20, 184, 166, 0.12); --fc-border: rgba(20, 184, 166, 0.3); }
.feature-card:nth-child(6) { --fc-color: #f472b6; --fc-bg: rgba(244, 114, 182, 0.12); --fc-border: rgba(244, 114, 182, 0.3); }

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--fc-border, rgba(255, 255, 255, 0.2));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--fc-border, rgba(255, 255, 255, 0.1));
}

.feature-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -2px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--fc-bg, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

#mobile-app {
  background: #0a1628;
  position: relative;
}

#mobile-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.mapp-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.mapp-visual {
  flex: 0 0 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 100, 200, 0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-mock {
  width: 220px;
  background: #07111f;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-notch {
  width: 70px;
  height: 22px;
  background: #07111f;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}

.phone-screen {
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.pscreen-logo {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.pscreen-tag {
  font-size: 9px;
  font-weight: 700;
  background: #50c878;
  color: #07111f;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.pscreen-balance-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.pscreen-balance-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.pscreen-balance-val {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.pscreen-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pslot {
  height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pslot-a { background: linear-gradient(135deg, #1a3a6a, #0d2040); }
.pslot-b { background: linear-gradient(135deg, #2a1a4a, #160d30); }
.pslot-c { background: linear-gradient(135deg, #1a4a2a, #0d2816); }
.pslot-d { background: linear-gradient(135deg, #3a2a0a, #201600); }

.pscreen-nav {
  display: flex;
  gap: 6px;
}

.pnav-item {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  padding: 6px 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.pnav-item.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.pscreen-cta {
  display: block;
  text-align: center;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.pscreen-cta:hover {
  background: #e8f0fc;
}

.phone-home-bar {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-home-bar::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.mapp-content {
  min-width: 0;
}

.mapp-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.mapp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.mapp-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mapp-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(80, 200, 120, 0.12);
  border: 1px solid rgba(80, 200, 120, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #50c878;
  font-weight: 700;
  margin-top: 1px;
}

.mapp-features li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.mapp-features li p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin: 0;
}

#content {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f38 50%, #0a1628 100%);
  position: relative;
}

#content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.content-wrap {
  max-width: 900px;
}

.content-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  margin-top: 40px;
  line-height: 1.25;
}

.content-wrap h2:first-child {
  margin-top: 0;
}

.content-wrap p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin-bottom: 18px;
}

.content-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.highlight-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
}

#faq {
  background: #0a1628;
  position: relative;
}

#faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.faq-list {
  max-width: 820px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-chevron svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 22px 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
}

footer {
  background: #060f1e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #ffffff;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
}

.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-group a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav-group a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.14);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 1100px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-right {
    flex: 0 0 300px;
    width: 300px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 120px 32px 72px;
    gap: 48px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-right {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-list {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .mapp-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .mapp-visual {
    flex: none;
  }
}

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

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-inner {
    padding: 110px 20px 64px;
  }

  section {
    padding: 72px 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    flex-direction: column;
  }

  .bonus-card {
    min-width: unset;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .games-controls {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 22px;
  }

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

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
