/* ============================================================
   WINLOTTO.TODAY — Psychic Lottery Website
   Theme: Luxury Mystical Dark | Gold & Deep Violet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Cinzel+Decorative:wght@400;700&family=Crimson+Pro:ital,wght@0,300;0,400;1,300&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8cc7a;
  --gold-dark:   #8a6b28;
  --deep:        #0a0812;
  --void:        #050408;
  --purple:      #1a0d2e;
  --mid:         #120d20;
  --text:        #e8e0d0;
  --text-muted:  #9a8fa0;
  --accent:      #7b3fa0;
  --accent2:     #9b5fc0;
  --border:      rgba(201,168,76,0.2);
  --glow:        rgba(201,168,76,0.15);

  --font-display: 'Cinzel Decorative', serif;
  --font-body:    'Crimson Pro', serif;
  --font-heading: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Star field background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 90%, rgba(255,255,255,0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { margin-bottom: 1rem; }
a  { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-light); }

/* ── Layout Utilities ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; position: relative; z-index: 1; }
.text-center { text-align: center; }
.gold       { color: var(--gold); }
.italic     { font-style: italic; }

/* Decorative divider */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2.5rem 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.divider span { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(5,4,8,0.98) 0%, rgba(5,4,8,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  transition: all .3s;
}
.nav.scrolled {
  padding: .6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.nav-logo span { color: var(--text); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--void) !important;
  padding: .45rem 1.3rem;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: .08em;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--void) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); transition: all .3s;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 1.2rem;
}
.mobile-menu a {
  color: var(--text-muted); font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,44,135,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(50,20,80,0.3) 0%, transparent 60%),
    linear-gradient(180deg, var(--void) 0%, var(--purple) 50%, var(--void) 100%);
}
/* Orbiting ring */
.hero-ring {
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 40s linear infinite;
}
.hero-ring::before {
  content: '✦';
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold); font-size: 1.2rem;
  filter: drop-shadow(0 0 8px var(--gold));
}
.hero-ring-2 {
  width: 800px; height: 800px;
  border-color: rgba(201,168,76,0.05);
  animation: spin 70s linear infinite reverse;
}
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}
.hero h1 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(201,168,76,0.15);
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px; margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .8s ease .7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease .9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #8a6b28, var(--gold) 50%, var(--gold-light));
  color: var(--void);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(201,168,76,0.3), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(201,168,76,0.5), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  color: var(--void);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(201,168,76,0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  position: relative; z-index: 1;
}
.trust-inner {
  display: flex; gap: 2rem; justify-content: center;
  align-items: center; flex-wrap: wrap;
  font-size: .88rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-inner span { display: flex; align-items: center; gap: .5rem; }
.trust-inner span::before { content: '✦'; color: var(--gold); font-size: .7rem; }

/* ── SECTION HEADINGS ── */
.section-label {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ── SERVICES / CARDS ── */
.services { background: var(--deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.card {
  background: linear-gradient(145deg, rgba(26,13,46,0.7), rgba(10,8,18,0.9));
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.08); }
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 2.4rem; margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.card h3 { color: var(--gold); margin-bottom: .8rem; font-family: var(--font-heading); }
.card p  { color: var(--text-muted); font-size: 1rem; }
.card-price {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ── NUMBER ORACLE ── */
.oracle { background: var(--purple); }
.oracle-box {
  max-width: 640px; margin: 3rem auto 0;
  background: rgba(5,4,8,0.8);
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.oracle-numbers {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin: 2rem 0;
}
.oracle-ball {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.3), rgba(10,8,18,0.9));
  border: 2px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.15);
  transition: all .4s;
}
.oracle-ball.revealed {
  border-color: var(--gold);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.5);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: inset 0 0 20px rgba(0,0,0,.5), 0 0 20px rgba(201,168,76,.4); }
  50%       { box-shadow: inset 0 0 20px rgba(0,0,0,.5), 0 0 45px rgba(201,168,76,.8); }
}
.oracle-label {
  font-family: var(--font-display);
  font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 2rem;
}
.oracle-input {
  width: 100%;
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: .9rem 1.2rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color .3s;
}
.oracle-input:focus { border-color: var(--gold-dark); }
.oracle-input::placeholder { color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--deep); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testi-card {
  background: rgba(26,13,46,0.4);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: .5rem; left: 1.5rem;
  font-size: 5rem; line-height: 1;
  color: var(--gold-dark); opacity: .4;
  font-family: var(--font-heading); font-style: italic;
  pointer-events: none;
}
.testi-text {
  font-style: italic; color: var(--text);
  margin-bottom: 1.2rem; position: relative;
}
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .6rem; }
.testi-author { color: var(--text-muted); font-size: .9rem; letter-spacing: .05em; }
.testi-author strong { color: var(--gold-light); }

/* ── HOW IT WORKS ── */
.how { background: var(--void); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-num {
  width: 60px; height: 60px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold);
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent);
}
.step h3 { color: var(--text); margin-bottom: .6rem; font-size: 1.1rem; }
.step p   { color: var(--text-muted); font-size: .95rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(91,44,135,0.3) 0%, rgba(10,8,18,1) 50%, rgba(138,107,40,0.15) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-section h2 { color: var(--gold); margin-bottom: 1rem; }
.cta-section p  { color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.1rem; }

/* ── FOOTER ── */
footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-muted); font-size: .95rem;
  margin-top: 1rem; max-width: 280px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--gold);
  letter-spacing: .08em; margin-bottom: .5rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: var(--text-muted); font-size: .95rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: var(--text-muted); font-size: .85rem;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ── DISCLAIMER ── */
.disclaimer {
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 2rem;
}
.disclaimer strong { color: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ring, .hero-ring-2 { display: none; }
  .oracle-box { padding: 2rem 1.2rem; }
  .oracle-ball { width: 50px; height: 50px; font-size: 1.1rem; }
}

/* ── SHOP PAGE SPECIFICS ── */
.shop-hero {
  min-height: 40vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: 100px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,44,135,0.3) 0%, transparent 70%);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: linear-gradient(145deg, rgba(26,13,46,0.7), rgba(10,8,18,0.9));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.product-badge {
  background: var(--gold); color: var(--void);
  font-family: var(--font-display); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .3rem .8rem; display: inline-block;
  margin-bottom: 1rem;
}
.product-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, rgba(91,44,135,0.3), rgba(10,8,18,0.8));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.product-body { padding: 1.8rem; }
.product-body h3 { color: var(--gold); margin-bottom: .6rem; }
.product-body p  { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.2rem; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--text);
  margin-bottom: 1rem;
}
.product-price span { font-size: .85rem; color: var(--text-muted); }

/* ── LEGAL PAGES ── */
.legal-hero {
  min-height: 30vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 100px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(91,44,135,0.2) 0%, transparent 70%);
}
.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: 4rem 2rem;
}
.legal-content h2 {
  color: var(--gold); margin-top: 2.5rem; margin-bottom: 1rem;
  font-size: 1.4rem;
}
.legal-content p, .legal-content li {
  color: var(--text-muted); margin-bottom: .8rem;
}
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content strong { color: var(--text); }
