/* ===== PARIK24 — PARIMATCH STYLE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #F5E642;
  --yellow-dark: #d4c800;
  --yellow-glow: rgba(245,230,66,0.15);
  --bg: #0d0d0d;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --bg4: #252525;
  --white: #ffffff;
  --text: #e8e8e8;
  --text-muted: #888888;
  --border: rgba(255,255,255,0.08);
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-yellow: 0 0 30px rgba(245,230,66,0.2);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }

/* ===== HEADER ===== */
header { background: var(--bg2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { color: var(--white); font-size: 22px; font-weight: 900; text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--yellow); }
.logo-icon { width: 32px; height: 32px; background: var(--yellow); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; }
nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 600; padding: 7px 14px; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
nav a:hover { color: var(--white); background: var(--bg3); }
nav a.active { color: var(--yellow); background: var(--yellow-glow); }
.lang-switch { display: flex; gap: 4px; }
.lang-switch a { background: var(--bg3); color: var(--text-muted); text-decoration: none; padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 700; transition: all 0.2s; border: 1px solid var(--border); }
.lang-switch a.active, .lang-switch a:hover { background: var(--yellow); color: var(--bg); }

/* ===== DROPDOWN NAV ===== */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.6; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px; min-width: 200px; box-shadow: 0 8px 32px rgba(0,0,0,0.6); z-index: 1001; }
.dropdown-menu a { display: block; color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 6px; transition: all 0.15s; white-space: nowrap; }
.dropdown-menu a:hover { color: var(--white); background: var(--bg3); }
.dropdown-menu .dd-title { font-size: 10px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; padding: 8px 12px 4px; }
.dropdown-menu hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

/* ===== HERO ===== */
.hero { background: var(--bg2); padding: 70px 20px 60px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,230,66,0.08) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--yellow-glow); border: 1px solid rgba(245,230,66,0.3); color: var(--yellow); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.15; margin-bottom: 18px; color: var(--white); }
.hero h1 span { color: var(--yellow); }
.hero p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero-stats { display: flex; gap: 30px; margin-top: 30px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 26px; font-weight: 900; color: var(--yellow); }
.hero-stat .lbl { font-size: 12px; color: var(--text-muted); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 28px; width: 100%; max-width: 360px; box-shadow: var(--shadow); position: relative; }
.hero-card::before { content: ''; position: absolute; inset: -1px; border-radius: 17px; background: linear-gradient(135deg, rgba(245,230,66,0.3), transparent 60%); z-index: -1; }
.hero-card-title { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.hero-card-code { background: var(--bg4); border: 2px dashed rgba(245,230,66,0.4); border-radius: 10px; padding: 16px; text-align: center; margin-bottom: 16px; cursor: pointer; transition: all 0.2s; }
.hero-card-code:hover { border-color: var(--yellow); background: var(--yellow-glow); }
.hero-card-code .code-val { font-size: 30px; font-weight: 900; color: var(--yellow); letter-spacing: 4px; }
.hero-card-code .code-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.hero-card-bonus { display: flex; gap: 10px; margin-bottom: 20px; }
.bonus-pill { flex: 1; background: var(--bg4); border-radius: 8px; padding: 10px; text-align: center; border: 1px solid var(--border); }
.bonus-pill .val { font-size: 16px; font-weight: 900; color: var(--white); }
.bonus-pill .lbl { font-size: 11px; color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--bg); text-decoration: none; padding: 15px 32px; border-radius: 8px; font-size: 16px; font-weight: 800; transition: all 0.2s; border: none; cursor: pointer; }
.btn:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.btn-outline { background: transparent; color: var(--yellow); border: 2px solid var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--bg); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== PROMO BOX ===== */
.promo-box { background: var(--bg3); border: 1px solid rgba(245,230,66,0.25); border-radius: var(--radius); padding: 28px; text-align: center; margin: 30px 0; position: relative; overflow: hidden; }
.promo-box::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,230,66,0.03), transparent); }
.promo-box p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.promo-box .code { font-size: 32px; font-weight: 900; color: var(--yellow); letter-spacing: 4px; background: var(--bg4); padding: 12px 28px; border-radius: 8px; display: inline-block; margin: 10px 0; border: 1px dashed rgba(245,230,66,0.4); cursor: pointer; transition: all 0.2s; }
.promo-box .code:hover { border-color: var(--yellow); box-shadow: var(--shadow-yellow); }
.promo-box .bonus-desc { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }
section.alt { background: var(--bg2); }

/* ===== SECTION TITLE ===== */
.section-title { margin-bottom: 10px; }
.section-title h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 900; color: var(--white); }
.section-title p { color: var(--text-muted); font-size: 16px; margin-top: 8px; }
.divider { width: 40px; height: 3px; background: var(--yellow); border-radius: 2px; margin: 12px 0 30px; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 24px; }
.card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all 0.2s; }
.card:hover { border-color: rgba(245,230,66,0.3); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.card-icon { width: 48px; height: 48px; background: var(--yellow-glow); border: 1px solid rgba(245,230,66,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== RATING ===== */
.rating-block { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.rating-score { text-align: center; min-width: 120px; }
.rating-score .score { font-size: 64px; font-weight: 900; color: var(--yellow); line-height: 1; }
.rating-score .stars { color: var(--yellow); font-size: 20px; margin: 4px 0; }
.rating-score small { color: var(--text-muted); font-size: 12px; }
.rating-rows { flex: 1; min-width: 200px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 14px; }
.rating-row .label { width: 160px; color: var(--text-muted); }
.progress { flex: 1; height: 6px; background: var(--bg4); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--yellow); border-radius: 3px; }
.rating-row .val { width: 28px; text-align: right; font-weight: 700; color: var(--white); }

/* ===== TABLE ===== */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 13px 16px; font-size: 15px; }
.info-table td:first-child { color: var(--text-muted); width: 45%; }
.info-table td:last-child { color: var(--white); font-weight: 500; }
.info-table tbody tr:hover { background: var(--bg3); }
.check { color: var(--success); font-weight: 700; }

/* ===== PROS/CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros, .cons { border-radius: var(--radius); padding: 24px; background: var(--bg3); border: 1px solid var(--border); }
.pros { border-top: 3px solid var(--success); }
.cons { border-top: 3px solid var(--danger); }
.pros h3 { color: var(--success); margin-bottom: 14px; font-size: 16px; }
.cons h3 { color: var(--danger); margin-bottom: 14px; font-size: 16px; }
.pros li, .cons li { margin-bottom: 10px; font-size: 14px; color: var(--text); list-style: none; padding-left: 22px; position: relative; line-height: 1.5; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 900; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(245,230,66,0.3); }
.faq-q { padding: 18px 20px; font-weight: 700; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--white); gap: 12px; }
.faq-q .faq-arrow { width: 24px; height: 24px; min-width: 24px; background: var(--bg4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 16px; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: border-color 0.2s; }
.step:hover { border-color: rgba(245,230,66,0.2); }
.step-num { width: 40px; height: 40px; min-width: 40px; background: var(--yellow); color: var(--bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; }
.step-content h4 { font-weight: 700; color: var(--white); margin-bottom: 4px; }
.step-content p { color: var(--text-muted); font-size: 14px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg2); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 10px 20px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--yellow); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ===== CTA HIGHLIGHT ===== */
.highlight { background: var(--bg3); border: 1px solid rgba(245,230,66,0.2); border-radius: var(--radius); padding: 50px 30px; text-align: center; position: relative; overflow: hidden; }
.highlight::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,230,66,0.1) 0%, transparent 70%); }
.highlight h2 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 900; color: var(--white); margin-bottom: 12px; position: relative; }
.highlight p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; position: relative; }

/* ===== REVIEW CARDS ===== */
.review-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; color: var(--bg); }
.reviewer-name { font-weight: 700; color: var(--white); font-size: 15px; }
.reviewer-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--yellow); font-size: 16px; }
.review-text { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.review-card.negative { border-top: 2px solid var(--danger); }

/* ===== SPORT ICONS STRIP ===== */
.sports-strip { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.sport-tag { background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.sport-tag:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== TRUST BADGES ===== */
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.trust-badge { display: flex; align-items: center; gap: 8px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; font-size: 13px; color: var(--text-muted); }
.trust-badge .icon { color: var(--yellow); font-size: 18px; }

/* ===== FOOTER ===== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 50px 20px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-sitemap { display: contents; }
.footer-logo { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer-logo span { color: var(--yellow); }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 20px; }
.disclaimer { font-size: 12px; color: var(--text-muted); line-height: 1.6; background: var(--bg3); border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; border-left: 3px solid rgba(245,230,66,0.3); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  nav { display: none; }
  .pros-cons { grid-template-columns: 1fr; }
  .rating-block { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 16px; }
}

/* ===== PULSE ANIMATION ===== */
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,230,66,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(245,230,66,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,230,66,0); }
}
.btn-pulse { animation: btnPulse 2s infinite; }
.hero .btn:first-of-type, .highlight .btn { animation: btnPulse 2s infinite; }

/* ===== VIP / PAYMENT TABLE ===== */
.fancy-table { width: 100%; border-collapse: collapse; background: var(--bg3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.fancy-table thead th { background: var(--yellow); color: var(--bg); padding: 12px 16px; font-size: 14px; font-weight: 700; text-align: left; }
.fancy-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.fancy-table tbody tr:last-child td { border-bottom: none; }
.fancy-table tbody tr:hover td { background: var(--bg4); }
.fancy-table td:first-child { color: var(--text-muted); }
.vip-badge { display: inline-flex; align-items: center; gap: 5px; padding: 2px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.vip-1 { background: rgba(150,150,150,0.15); color: #aaa; }
.vip-2 { background: rgba(205,127,50,0.15); color: #cd7f32; }
.vip-3 { background: rgba(192,192,192,0.15); color: #c0c0c0; }
.vip-4 { background: rgba(245,230,66,0.15); color: var(--yellow); }
.vip-5 { background: rgba(138,43,226,0.15); color: #b06eff; }

/* ===== PAYMENT METHODS ===== */
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.pay-icon { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.pay-icon:hover { border-color: rgba(245,230,66,0.3); color: var(--white); }

/* ===== REVIEW MICRODATA ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 24px; }

/* ===== UTILITY ===== */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-muted); }
.badge { display: inline-block; background: var(--yellow); color: var(--bg); font-size: 11px; font-weight: 900; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; }
.badge-green { background: var(--success); color: #fff; }
