/* ===========================
   AVIAMASTERS 2 — Main Styles
   Domain: aviamasters2.kz
   =========================== */

:root {
  --gold: #FFD82C;
  --red-dark: #C20B11;
  --navy: #0C0C56;
  --blue: #30499F;
  --btn-red: #FF2A28;
  --btn-blue: #3EAAFF;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --text-dark: #0e0e2c;
  --text-gray: #9099b7;
  --border: rgba(255,216,44,0.15);
  --card-bg: rgba(12,12,86,0.85);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); color: var(--gold); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); color: var(--white); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--gold); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; color: var(--btn-blue); }

p { margin-bottom: 1rem; color: #c8d0e8; font-size: 1rem; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--btn-blue); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { color: #c8d0e8; margin-bottom: 0.4rem; }
strong { color: var(--gold); }
em { color: var(--btn-blue); font-style: normal; }

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #060620 0%, #0C0C56 60%, #0a0a35 100%);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  gap: 1rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--btn-blue);
  display: block;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
nav.main-nav { display: flex; align-items: center; gap: 0.25rem; }
nav.main-nav a {
  color: #c8d0e8;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active {
  background: rgba(255,216,44,0.12);
  color: var(--gold);
}

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.header-btns { display: flex; gap: 0.5rem; align-items: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }
.btn-red {
  background: linear-gradient(135deg, var(--btn-red) 0%, #c50000 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,42,40,0.5);
}
.btn-blue {
  background: linear-gradient(135deg, var(--btn-blue) 0%, #1e7ed4 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(62,170,255,0.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e6a800 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,216,44,0.45);
}
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.1rem; border-radius: 12px; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #060620 0%, #0C0C56 45%, #1a0a40 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,216,44,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.hero-title { color: var(--gold); margin-bottom: 0.5rem; }
.hero-title span { color: var(--white); }
.hero-sub { font-size: 1.15rem; color: #c8d0e8; margin-bottom: 1rem; line-height: 1.6; }
.hero-kz { font-size: 0.9rem; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; }

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .val { font-size: 1.6rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 0.7rem; color: var(--btn-blue); text-transform: uppercase; letter-spacing: 0.07em; }

.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-img { position: relative; }
.hero-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 60px rgba(255,216,44,0.15);
  border: 1px solid rgba(255,216,44,0.2);
  margin: 0 auto;
}
.hero-float {
  position: absolute;
  background: rgba(12,12,86,0.92);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hero-float.f1 { top: 12%; right: -8%; }
.hero-float.f2 { bottom: 18%; left: -8%; }
.hero-float .ico { font-size: 1.2rem; }

/* ===== SECTIONS ===== */
section { padding: 4rem 0; }
.section-dark { background: linear-gradient(180deg, #080830 0%, #0C0C56 100%); }
.section-light { background: linear-gradient(180deg, #0a0a40 0%, #060620 100%); }
.section-mid { background: #0a0a38; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 640px; margin: 0 auto; color: #9099b7; }
.section-label {
  display: inline-block;
  background: rgba(255,216,44,0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(255,216,44,0.3);
  margin-bottom: 0.7rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,216,44,0.12);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red-dark));
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.feat-ico { font-size: 2.5rem; margin-bottom: 1rem; }
.feat-card p { margin: 0; font-size: 0.9rem; }

/* ===== HOW-TO STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(48,73,159,0.4);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  transition: border-color 0.25s;
}
.step:hover { border-color: var(--gold); }
.step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.step-body p { margin: 0; font-size: 0.92rem; }

/* ===== MULTIPLIER TABLE ===== */
.mult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.mult-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,216,44,0.15);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  transition: 0.25s;
}
.mult-card:hover { border-color: var(--gold); background: rgba(255,216,44,0.07); }
.mult-val { font-size: 1.6rem; font-weight: 900; color: var(--gold); display: block; }
.mult-lbl { font-size: 0.72rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,216,44,0.1);
  border: 1px solid rgba(255,216,44,0.15);
  width: 100%;
}

/* ===== INFO CARDS ===== */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.info-card {
  background: linear-gradient(135deg, rgba(12,12,86,0.8) 0%, rgba(6,6,32,0.9) 100%);
  border: 1px solid rgba(255,216,44,0.2);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  transition: 0.3s;
}
.info-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.info-card .ico { font-size: 2.4rem; margin-bottom: 1rem; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.info-card p { margin: 0; font-size: 0.9rem; }

/* ===== PROMO BLOCK ===== */
.promo-block {
  background: linear-gradient(135deg, rgba(194,11,17,0.2) 0%, rgba(12,12,86,0.95) 50%, rgba(48,73,159,0.3) 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-block::before {
  content: '✈';
  position: absolute; top: -20px; right: 5%;
  font-size: 8rem; opacity: 0.06; color: var(--gold);
  animation: fly 8s linear infinite;
}
@keyframes fly {
  0% { transform: translateX(-30px) rotate(-5deg); }
  50% { transform: translateX(20px) rotate(5deg); }
  100% { transform: translateX(-30px) rotate(-5deg); }
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,216,44,0.1);
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 0.8rem 1.8rem;
  margin: 1.2rem 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.promo-btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(48,73,159,0.35);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid rgba(255,216,44,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.4rem 1.2rem;
  color: #9099b7;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(48,73,159,0.3);
}
.faq-item.open .faq-a { display: block; }

/* ===== CRYPTO SECTION ===== */
.crypto-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.crypto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(62,170,255,0.25);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: 0.25s;
}
.crypto-card:hover { border-color: var(--btn-blue); transform: translateY(-3px); }
.crypto-icon { font-size: 2.4rem; margin-bottom: 0.7rem; }
.crypto-name { font-weight: 800; color: var(--btn-blue); font-size: 1.05rem; margin-bottom: 0.4rem; }
.crypto-desc { font-size: 0.82rem; color: var(--text-gray); margin: 0; }

/* ===== REGISTER BLOCK ===== */
.register-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.reg-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,216,44,0.15);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.reg-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.reg-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.reg-step p { margin: 0; font-size: 0.87rem; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, #8b0000 50%, var(--red-dark) 100%);
  border-top: 1px solid rgba(255,216,44,0.2);
  border-bottom: 1px solid rgba(255,216,44,0.2);
  padding: 1.2rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 1.5rem; font-weight: 900; color: var(--gold); display: block; }
.stat-item .txt { font-size: 0.72rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 0.8rem 0;
  font-size: 0.82rem;
  color: var(--text-gray);
}
.breadcrumb a { color: var(--btn-blue); }
.breadcrumb span { color: var(--text-gray); margin: 0 0.4rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #060620 0%, #0C0C56 60%, #12083a 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,216,44,0.15);
}
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero p { color: #9099b7; max-width: 680px; }

/* ===== CONTENT ARTICLE ===== */
.article-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-content h3 { margin-top: 1.8rem; }
.article-content p { line-height: 1.8; margin-bottom: 1.2rem; }
.article-content ul, .article-content ol { margin-bottom: 1.2rem; }
.article-content li { line-height: 1.7; }
.article-content img {
  width: 100%;
  border-radius: 14px;
  margin: 1.5rem 0;
  border: 1px solid rgba(255,216,44,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.data-table th {
  background: rgba(255,216,44,0.12);
  color: var(--gold);
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,216,44,0.3);
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(48,73,159,0.25);
  color: #c8d0e8;
}
.data-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,216,44,0.08) 0%, rgba(48,73,159,0.15) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box.blue { border-color: var(--btn-blue); background: linear-gradient(135deg, rgba(62,170,255,0.08), rgba(48,73,159,0.1)); }
.highlight-box.red { border-color: var(--btn-red); background: linear-gradient(135deg, rgba(255,42,40,0.08), rgba(194,11,17,0.1)); }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #060618 0%, #030312 100%);
  border-top: 2px solid rgba(255,216,44,0.2);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-gray); }
.footer-col h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-disclaimer { font-size: 0.78rem; color: var(--text-gray); max-width: 700px; line-height: 1.6; }
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid var(--red-dark);
  border-radius: 8px;
  color: var(--red-dark);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero { min-height: auto; padding: 2.5rem 0 2rem; }

  nav.main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #060620;
    border-bottom: 2px solid var(--gold);
    padding: 1rem;
    gap: 0.25rem;
    z-index: 999;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 0.65rem 1rem; border-radius: 8px; font-size: 0.95rem; }

  .burger { display: flex; }
  header { position: relative; }

  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }

  .hero-float { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-btns .btn-blue { display: none; }
  .hero-stats { gap: 1rem; }
  .hero-stat .val { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .btn-lg { padding: 0.75rem 1.4rem; font-size: 0.95rem; }
  .promo-block { padding: 2rem 1.2rem; }
  .hero-stats { gap: 0.8rem; }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(255,216,44,0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== COOKIE NOTICE ===== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0C0C56;
  border-top: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 2000;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #c8d0e8;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.4rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.82rem;
  flex-shrink: 0;
}
