/* =============================================
   1WIN-IGRA — SEO SITE
   Theme: Dark / Red & Gold
   ============================================= */

@font-face {
  font-family: 'Benzin';
  src: url('../BenzinBold.woff2') format('woff2');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #0a0a0f;
  --bg2:       #0d0d14;
  --bg3:       #111118;
  --card:      #15151e;
  --border:    #222230;
  --red:       #e8001c;
  --red2:      #ff1f38;
  --gold:      #f5c518;
  --gold2:     #ffd700;
  --green:     #22c55e;
  --blue:      #38bdf8;
  --text:      #e8e8f0;
  --text-dim:  #9898b8;
  --text-dim2: #7a7a96;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.7);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.25; font-weight: 800; color: #fff;
  font-family: 'Benzin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); margin-bottom: 10px; }
h4 { font-size: 1rem; }

p { margin-bottom: 14px; color: var(--text); }
p:last-child { margin-bottom: 0; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--red2); }
ul, ol { padding-left: 20px; }
li { margin-bottom: 6px; }
strong { color: #fff; font-weight: 700; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }
.section-xs { padding: 32px 0; }

/* ---- HEADER ---- */
.site-header {
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-logo { font-size: 1.4rem; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 8px; }
.site-logo span { color: var(--red); }
.site-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  color: var(--text-dim); font-size: 0.85rem; padding: 6px 12px;
  border-radius: var(--radius-sm); transition: all .2s;
  border: 1px solid transparent;
}
.site-nav a:hover, .site-nav a.active {
  color: #fff; background: var(--card); border-color: var(--border);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all .2s; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), #c0001a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,0,28,0.4);
}
.btn-red:hover { background: linear-gradient(135deg, var(--red2), var(--red)); transform: translateY(-2px); color: #fff; box-shadow: 0 6px 28px rgba(232,0,28,0.55); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d4a800);
  color: #000; font-weight: 900;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold2), var(--gold)); transform: translateY(-2px); color: #000; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 64px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,0,28,0.08) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,0,28,0.12); border: 1px solid rgba(232,0,28,0.3);
  color: var(--red2); padding: 6px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .05em;
}
.hero h1 { max-width: 720px; margin: 0 auto 16px; }
.hero-desc { font-size: 1.1rem; color: var(--text-dim); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-val { font-size: 1.6rem; font-weight: 900; color: var(--gold); display: block; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }

/* ---- RATING STARS ---- */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rating-num { font-size: 1.4rem; font-weight: 900; color: #fff; }
.rating-count { color: var(--text-dim); font-size: 0.85rem; }

/* ---- CARDS ---- */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.card-red { border-color: rgba(232,0,28,0.25); }
.card-gold { border-color: rgba(245,197,24,0.25); }

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media(max-width:768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media(min-width:480px) and (max-width:768px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th { background: var(--bg3); color: var(--text-dim); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }
.td-label { color: var(--text-dim); font-size: 0.9rem; }
.td-val { color: #fff; font-weight: 600; }
.badge-green { background: rgba(34,197,94,0.12); color: var(--green); padding: 3px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.badge-red { background: rgba(232,0,28,0.12); color: var(--red2); padding: 3px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.badge-gold { background: rgba(245,197,24,0.12); color: var(--gold); padding: 3px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  padding: 18px 22px; font-weight: 700; color: #fff; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--red); font-size: 1.4rem; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 18px; color: var(--text-dim); display: none; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--red);
  color: #fff; font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-body h3 { margin-bottom: 4px; }
.step-body p { color: var(--text-dim); margin: 0; font-size: 0.95rem; }

/* ---- TIPS ---- */
.tip-block {
  background: var(--card); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
}
.tip-block.gold { border-left-color: var(--gold); }
.tip-block.green { border-left-color: var(--green); }
.tip-title { font-weight: 700; color: #fff; margin-bottom: 6px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: .05em; }
.tip-block p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }

/* ---- PROMO BOX ---- */
.promo-box {
  background: linear-gradient(135deg, rgba(232,0,28,0.1), rgba(245,197,24,0.08));
  border: 1px solid rgba(232,0,28,0.3);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.promo-box h2 { color: var(--gold); margin-bottom: 8px; }
.promo-amount { font-size: 2.5rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 8px; }
.promo-desc { color: var(--text-dim); margin-bottom: 24px; font-size: 0.95rem; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 14px 0; font-size: 0.85rem; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-dim2); margin: 0 8px; }
.breadcrumb .current { color: var(--text-dim); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { color: var(--text-dim); max-width: 560px; margin: 10px auto 0; }
.section-tag {
  display: inline-block; background: rgba(232,0,28,0.1); color: var(--red2);
  border: 1px solid rgba(232,0,28,0.2); padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 10px;
}

/* ---- FEATURE ICONS ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:600px) { .features { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.feature-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ---- REVIEW CARDS ---- */
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 900; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.review-name { font-weight: 700; color: #fff; }
.review-date { font-size: 0.8rem; color: var(--text-dim); }
.review-text { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--card); border: 1px solid rgba(232,0,28,0.4);
  border-radius: 999px; padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(232,0,28,0.2);
  z-index: 50; white-space: nowrap;
}
.sticky-cta-text { font-size: 0.85rem; color: var(--text-dim); }
.sticky-cta-text strong { color: #fff; }
@media(max-width:480px) { .sticky-cta { width: calc(100% - 32px); justify-content: space-between; border-radius: var(--radius); } }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media(max-width:640px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--red); }
.footer-desc { color: var(--text-dim); font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.875rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; gap: 20px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-copy { color: var(--text-dim2); font-size: 0.8rem; }
.footer-disclaimer { color: var(--text-dim2); font-size: 0.75rem; max-width: 600px; line-height: 1.5; }

/* ---- MISC ---- */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.text-center { text-align: center; }
.text-dim { color: var(--text-dim); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red2); }
.text-green { color: var(--green); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ---- DOWNLOAD BUTTONS ---- */
.dl-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.dl-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px;
  transition: all .2s; flex: 1; min-width: 160px;
}
.dl-btn:hover { border-color: var(--gold); color: var(--gold); }
.dl-btn-icon { font-size: 1.6rem; }
.dl-btn-text { display: flex; flex-direction: column; }
.dl-btn-sub { font-size: 0.7rem; color: var(--text-dim); }
.dl-btn-name { font-size: 0.95rem; font-weight: 700; color: #fff; }

/* ---- BURGER MENU ---- */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px; cursor: pointer;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); flex-shrink: 0;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE HEADER ---- */
@media(max-width:768px) {
  .burger { display: flex; }

  .site-nav {
    display: none;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
    flex-direction: column; gap: 4px;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    font-size: 1rem; padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .header-inner .btn-sm { display: none; }

  .hero-stats { gap: 16px; }
  .hero-stat-val { font-size: 1.3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .sticky-cta { width: calc(100% - 32px); border-radius: var(--radius); justify-content: space-between; }

  .promo-amount { font-size: 2rem; }
}

@media(max-width:480px) {
  .hero { padding: 48px 0 40px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .card { padding: 18px; }
  .section { padding: 40px 0; }
  .section-sm { padding: 32px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  table { font-size: 0.85rem; }
  th, td { padding: 10px 12px; }
  .features { grid-template-columns: 1fr; }
  .review-card { padding: 16px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .faq-q { padding: 14px 16px; font-size: 0.95rem; }
  .faq-a { padding: 0 16px 14px; }
}
