/* ===== Reset & Variables ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== Background Effects ===== */
.bg-particles {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(13, 74, 40, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.floating-cards {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.card-float {
  position: absolute;
  font-size: 3rem;
  opacity: 0.04;
  animation: floatCard 20s infinite ease-in-out;
}

.card-1 { top: 10%; left: 5%; color: #fff; animation-delay: 0s; }
.card-2 { top: 60%; left: 85%; color: var(--red-light); animation-delay: -5s; }
.card-3 { top: 30%; left: 70%; color: var(--red-light); animation-delay: -10s; }
.card-4 { top: 80%; left: 15%; color: #fff; animation-delay: -15s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px var(--glow-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.logo-text small {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e17;
  box-shadow: 0 4px 20px var(--glow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--glow-gold);
}

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

.btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}

.hero-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--text-muted);
  margin-top: 4px;
}

.title-sub .gold {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s;
}

.btn-download svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-download span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-download small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-download strong {
  font-size: 0.95rem;
}

.btn-download:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-android:hover { border-color: #3ddc84; }
.btn-ios:hover { border-color: #007aff; }
.btn-pc:hover { border-color: var(--gold); }

.hero-version {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-note strong {
  color: var(--gold-light);
}

/* ===== Phone Mockup ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  border: 3px solid #2a2a3e;
  box-shadow:
    0 0 60px rgba(212, 160, 23, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--green-felt);
}

.game-table {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.table-felt {
  flex: 1;
  background:
    radial-gradient(ellipse at center, #1a8c4a 0%, var(--green-felt) 70%);
  position: relative;
}

.pot-chip {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 8px 20px;
  text-align: center;
  animation: potGlow 3s infinite;
}

.pot-chip span {
  display: block;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.pot-chip strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-light);
}

@keyframes potGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 160, 23, 0.3); }
  50% { box-shadow: 0 0 25px rgba(212, 160, 23, 0.6); }
}

.player-cards {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.community-cards {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.poker-card {
  width: 42px;
  height: 58px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: dealCard 0.6s ease-out backwards;
}

.poker-card.red { color: var(--red-light); }
.poker-card.black { color: #1a1a2e; }
.poker-card span { font-size: 1.1rem; line-height: 1; }

.poker-card.hidden {
  background: linear-gradient(135deg, #c0392b, #8b0000);
  border: 2px solid var(--gold-dark);
}

.poker-card:nth-child(1) { animation-delay: 0.2s; }
.poker-card:nth-child(2) { animation-delay: 0.4s; }
.poker-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes dealCard {
  from { transform: translateY(-40px) rotate(-10deg); opacity: 0; }
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.action-bar {
  display: flex;
  gap: 6px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.7);
}

.game-btn {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}

.game-btn.fold {
  background: #444;
  color: #ccc;
}

.game-btn.call {
  background: var(--green);
  color: #fff;
}

.game-btn.raise {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e17;
}

.chip-stack {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px dashed rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.chip-stack::before,
.chip-stack::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.chip-1 {
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, var(--red-light), var(--red));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: chipBounce 4s infinite;
}

.chip-2 {
  bottom: 20%;
  left: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: chipBounce 4s infinite 1s;
}

.chip-3 {
  top: 50%;
  right: -5%;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #3498db, #1a5276);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: chipBounce 4s infinite 2s;
}

@keyframes chipBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Section Common ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Features ===== */
.features {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== Game Modes ===== */
.game-modes {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: rgba(17, 24, 39, 0.4);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mode-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}

.mode-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-3px);
}

.mode-card.mode-highlight {
  border-color: rgba(212, 160, 23, 0.35);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.06), var(--bg-card));
}

.mode-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.mode-tag.gold {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
}

.mode-card h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.mode-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mode-list {
  list-style: none;
  padding: 0;
}

.mode-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.mode-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ===== Tournaments ===== */
.tournaments {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.tournament-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tournament-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.3s;
  position: relative;
}

.tournament-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  background: var(--bg-card-hover);
}

.tournament-card.featured {
  border-color: rgba(212, 160, 23, 0.4);
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.08), var(--bg-card));
}

.tournament-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e17;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.tournament-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.t-day {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.t-hour {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 4px;
}

.tournament-info h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.tournament-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.tournament-prize {
  text-align: center;
  min-width: 120px;
}

.tournament-prize span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.tournament-prize strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
}

/* ===== Benefits ===== */
.benefits {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: rgba(17, 24, 39, 0.4);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.benefit-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.benefit-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.25);
  margin-bottom: 12px;
}

.benefit-item h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.steps-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
}

.steps-box h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: var(--gold-light);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  text-align: center;
  counter-increment: steps;
  position: relative;
}

.steps-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e17;
  font-family: var(--font-display);
  font-weight: 900;
  border-radius: 50%;
}

.steps-list li strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.steps-list li span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Latest News ===== */
.news {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: rgba(17, 24, 39, 0.5);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.news-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.news-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.06);
}

.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(10, 14, 23, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.news-body {
  padding: 20px 22px 24px;
}

.news-body time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.news-body h3 {
  font-size: 1rem;
  line-height: 1.5;
  margin: 8px 0 10px;
}

.news-body h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.news-body h3 a:hover {
  color: var(--gold-light);
}

.news-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-more {
  text-align: center;
  margin-top: 48px;
}

/* ===== Download CTA ===== */
.download-cta {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.cta-box {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(192, 57, 43, 0.05));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  animation: ctaRotate 20s linear infinite;
}

@keyframes ctaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
}

.cta-box > p {
  color: var(--text-muted);
  margin-bottom: 12px;
  position: relative;
}

.cta-sub {
  font-size: 0.88rem !important;
  margin-bottom: 32px !important;
  opacity: 0.85;
}

.sys-req {
  max-width: 720px;
  margin: 0 auto 40px;
  position: relative;
  text-align: left;
}

.sys-req h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.sys-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sys-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}

.sys-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.sys-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: rgba(17, 24, 39, 0.4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin: 0;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card p::before {
  content: '"';
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

.testimonial-card footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-style: normal;
}

.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cta-box strong {
  color: var(--gold-light);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}

.qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qr-code {
  width: 120px;
  height: 120px;
  background:
    repeating-conic-gradient(#fff 0% 25%, #111 0% 50%) 0 0 / 10px 10px,
    repeating-conic-gradient(#111 0% 25%, #fff 0% 50%) 5px 5px / 10px 10px;
  border-radius: 8px;
  border: 3px solid var(--gold);
}

.qr-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.qr-info {
  text-align: left;
}

.qr-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.qr-info .small {
  font-size: 0.8rem;
  margin-top: 4px;
}

.cta-chips {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: -8px;
}

.cta-chips span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-chips span:nth-child(1) { background: var(--red); }
.cta-chips span:nth-child(2) { background: var(--gold); margin-left: -10px; }
.cta-chips span:nth-child(3) { background: #3498db; margin-left: -10px; }

/* ===== About Site ===== */
.about-site {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.about-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1rem !important;
  color: var(--text) !important;
  margin-bottom: 20px !important;
}

.about-lead strong {
  color: var(--gold-light);
}

.seo-keywords {
  margin: 28px 0;
  padding: 22px 24px;
  background: rgba(212, 160, 23, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.seo-keywords h4 {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-tags li a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.seo-tags li a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.3s;
}

.about-highlight:hover {
  border-color: rgba(212, 160, 23, 0.35);
}

.about-highlight strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.about-highlight span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
}

.about-card h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.about-card ul {
  list-style: none;
}

.about-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0 8px 18px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-card li:last-child {
  border-bottom: none;
}

.about-card li::before {
  content: '♠';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
}

.about-meta .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-meta .meta-row:last-child {
  border-bottom: none;
}

.about-meta .meta-row span {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.about-meta .meta-row strong {
  font-size: 0.82rem;
  color: var(--text);
  text-align: right;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.8;
}

.footer-contact {
  margin-top: 12px !important;
  font-size: 0.82rem !important;
  color: var(--text-muted);
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.disclaimer {
  margin-top: 8px;
  color: var(--red-light) !important;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

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

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

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

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

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

  .steps-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tournament-card {
    grid-template-columns: 80px 1fr;
  }

  .tournament-prize {
    grid-column: 2;
    text-align: left;
    margin-top: 8px;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .sys-req-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.95);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .title-line {
    font-size: 2.8rem;
  }

  .title-sub {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

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

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

  .tournament-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tournament-time {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 16px;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .tournament-prize {
    grid-column: auto;
    text-align: center;
    margin-top: 8px;
  }

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

  .cta-box {
    padding: 40px 24px;
  }

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

  .qr-section {
    flex-direction: column;
    text-align: center;
  }

  .qr-info {
    text-align: center;
  }

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


/* ===== Variant 041 Theme Override ===== */
:root {
  --bg-dark: #14180a;
  --bg-card: #29301b;
  --bg-card-hover: #384223;
  --gold: #5e2fde;
  --gold-light: #7d55ec;
  --gold-dark: #3d17a5;
  --red: #b0b025;
  --red-light: #d9da2e;
  --green: #6e2054;
  --green-felt: #49122d;
  --text: #dfe4e6;
  --text-muted: #919ea5;
  --border: rgba(94, 47, 222, 0.14);
  --glow-gold: rgba(94, 47, 222, 0.60);
  --radius-base: 28px;
}

body { background: #14180a; }

.bg-particles {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(94, 47, 222, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(217, 218, 46, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(73, 18, 45, 0.08) 0%, transparent 50%);
}

.feature-card, .mode-card, .news-card, .tournament-card, .benefit-item,
.testimonial-card, .about-card, .about-highlight, .faq-item, .cta-box,
.btn-download, .steps-box, .seo-keywords {
  border-radius: var(--radius-base);
}

.section-tag { color: #5e2fde; }
.logo-icon { color: #5e2fde; text-shadow: 0 0 20px rgba(94, 47, 222, 0.60); }

/* Layout profile: tournament-grid + hero-centered */

.tournament-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tournament-card { grid-template-columns: 1fr; text-align: left; }
.tournament-time { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; gap: 12px; }


.hero-inner { grid-template-columns: 1fr; text-align: center; }
.hero-stats, .hero-actions { justify-content: center; }
.hero-visual { margin-top: 40px; }

