/* ===== LUCKY COLA TOP - GLOBAL STYLES ===== */
:root {
  --bg-primary: #0b0e13;
  --bg-secondary: #12161d;
  --bg-card: #181d27;
  --bg-card-hover: #1f2533;
  --gold: #d4a843;
  --gold-light: #f0d06e;
  --gold-dark: #a8842f;
  --text-primary: #e8e6e1;
  --text-secondary: #9a978f;
  --text-muted: #6b6860;
  --accent-green: #2ecc71;
  --accent-red: #e74c3c;
  --border-color: #2a2f3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--text-primary); }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0b0e13 !important;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,0.35);
  color: #0b0e13 !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f1319 0%, #1a1525 50%, #0f1319 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212,168,67,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .highlight { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 32px;
  position: relative;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0b0e13;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,168,67,0.3);
  color: #0b0e13;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--gold-dark);
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: rgba(212,168,67,0.1);
  color: var(--gold-light);
}

/* ===== SECTION HEADINGS ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* ===== GAME CATEGORY GRID ===== */
.categories-section { padding: 80px 20px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-align: center;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(212,168,67,0.12);
}
.cat-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-secondary);
}
.cat-card h3 {
  padding: 16px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 60px 20px;
}
.content-section:nth-child(even) {
  background: var(--bg-secondary);
}
.content-block {
  max-width: var(--max-width);
  margin: 0 auto;
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.content-block h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  color: var(--gold);
}
.content-block p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.content-block ul {
  list-style: none;
  padding: 0;
}
.content-block ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
}
.content-block ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 11px;
}

/* ===== FAQ / QUICK GUIDES ===== */
.faq-section { padding: 60px 20px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.faq-card:hover { border-color: var(--gold-dark); }
.faq-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.faq-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.faq-card a.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

/* ===== BLOG / POSTS GRID ===== */
.posts-section { padding: 60px 20px; background: var(--bg-secondary); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
}
.post-card-body { padding: 20px; }
.post-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.post-card h3 a { color: var(--text-primary); }
.post-card h3 a:hover { color: var(--gold); }
.post-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}
.trust-item {
  text-align: center;
}
.trust-item .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.trust-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a1525, #0f1319);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto 32px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-primary); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #0f1319, #1a1525);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ===== STEPS / HOW-TO ===== */
.steps {
  counter-reset: step;
  max-width: 700px;
  margin: 32px auto;
}
.step {
  counter-increment: step;
  padding: 20px 20px 20px 60px;
  position: relative;
  margin-bottom: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #0b0e13;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.step h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.info-table th {
  color: var(--gold);
  font-weight: 600;
  background: var(--bg-card);
}
.info-table td {
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    gap: 16px;
  }
  .hero { padding: 50px 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 24px; }
  .trust-item .number { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-cta { flex-direction: column; align-items: center; }
}
