@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #06060f;
  --navy2: #0d0d1e;
  --purple: #6c3fc5;
  --purple-light: #9b6dff;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --cyan: #00d4ff;
  --pink: #ff6eb4;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── CANVAS ── */
#star-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { font-size: 1.6rem; }
.nav-logo-text { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); letter-spacing: 1px; }
.nav-logo-sub { font-size: 0.65rem; color: var(--text-muted); display: block; letter-spacing: 2px; }
#nav-links { display: flex; gap: 2rem; list-style: none; }
#nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color .3s; }
#nav-links a:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--purple), var(--purple-light)); border: none; color: #fff; padding: .55rem 1.3rem; border-radius: 50px; font-size: .85rem; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,63,197,.5); }
#burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
#burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
#hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.3);
  color: var(--gold); font-size: .78rem; padding: .4rem 1rem; border-radius: 50px;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem;
  animation: fadeDown .8s ease;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--gold) 60%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem; animation: fadeDown .9s ease .1s both;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem); color: var(--text-muted);
  max-width: 560px; line-height: 1.8;
  animation: fadeDown 1s ease .2s both; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeDown 1s ease .3s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border: none; color: #fff; padding: .9rem 2.2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 32px rgba(108,63,197,.45);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(108,63,197,.6); }
.btn-outline {
  background: transparent; border: 1px solid var(--glass-border);
  color: var(--text); padding: .9rem 2rem; border-radius: 50px;
  font-size: 1rem; cursor: pointer; transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap; justify-content: center; animation: fadeDown 1s ease .4s both; }
.stat { text-align: center; }
.stat-num { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: .75rem; color: var(--text-muted); letter-spacing: 1px; }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; padding: 5rem 1.5rem; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); text-align: center; margin-bottom: .75rem; }
.section-title span { color: var(--gold); }
.section-sub { text-align: center; color: var(--text-muted); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }
.container { max-width: 1100px; margin: 0 auto; }

/* ── HOW IT WORKS ── */
#how-it-works { background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.step-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  transition: transform .3s, border-color .3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.3); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 1.2rem; box-shadow: 0 4px 20px rgba(108,63,197,.4);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.step-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES ── */
#services { background: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, var(--card-glow, rgba(108,63,197,.15)), transparent 70%);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.service-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.service-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── FORM SECTION ── */
#form-section { background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%); }
.form-wrapper {
  max-width: 580px; margin: 0 auto;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 2.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; letter-spacing: .5px; }
.form-row { display: flex; gap: 1rem; }
.half-width { flex: 1; }
.form-group input, .form-group select {
  width: 100%; padding: .9rem 1.1rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: .95rem; font-family: 'Inter', sans-serif;
  transition: border-color .3s, box-shadow .3s; outline: none;
}
.form-group select option { background: var(--navy); color: #fff; }
.upload-group input[type="file"] { padding: 0.7rem; background: rgba(108,63,197,0.1); border: 1px dashed rgba(255,255,255,0.3); cursor: pointer; }
.upload-guide { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; line-height: 1.5; padding: 0.8rem; background: rgba(0,0,0,0.2); border-radius: var(--radius-sm); border-left: 3px solid var(--purple-light); }
.upload-guide strong { color: var(--gold-light); }
.form-group input:focus, .form-group select:focus { border-color: var(--purple-light); box-shadow: 0 0 0 3px rgba(108,63,197,.2); }
.form-group input::placeholder { color: rgba(255,255,255,.25); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.6); cursor: pointer; }
#analyze-btn {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border: none; border-radius: 50px; color: #fff;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  box-shadow: 0 8px 32px rgba(108,63,197,.45);
  transition: transform .25s, box-shadow .25s;
}
#analyze-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,63,197,.6); }
#analyze-btn:disabled { opacity: .7; cursor: not-allowed; }
.btn-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.form-note { text-align: center; font-size: .75rem; color: var(--text-muted); margin-top: 1rem; }

/* ── RESULTS ── */
#results-section { background: var(--navy); display: none; padding: 4rem 1.5rem; }
.result-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.result-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700;
  flex-shrink: 0; box-shadow: 0 8px 30px rgba(108,63,197,.5);
}
.result-intro h2 { font-family: 'Cinzel', serif; font-size: 1.5rem; margin-bottom: .4rem; }
.result-intro p { color: var(--text-muted); font-size: .9rem; }
.highlight { color: var(--gold); }
.result-meta-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.meta-tag { background: rgba(255,255,255,.07); border: 1px solid var(--glass-border); border-radius: 50px; padding: .3rem .9rem; font-size: .78rem; color: var(--text-muted); }

/* ── NUMBER CARDS ── */
.number-cards { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.num-card {
  flex: 1 1 120px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.2rem; text-align: center;
  border-top: 3px solid var(--card-color, var(--purple));
  transition: transform .3s;
}
.num-card:hover { transform: translateY(-4px); }
.num-symbol { font-size: 1.5rem; margin-bottom: .3rem; }
.num-value { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 700; color: var(--card-color, var(--gold)); }
.num-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: .2rem; }
.num-title { font-size: .75rem; color: var(--text); margin-top: .2rem; }

/* ── RESULT CARDS ── */
.result-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem;
}
.featured-card { border-color: rgba(212,175,55,.25); background: rgba(212,175,55,.04); }
.card-badge {
  display: inline-block; border: 1px solid; border-radius: 50px;
  padding: .6rem 1.2rem;
  font-size: .85rem;
}
.tagline { font-size: 1.05rem; color: var(--gold-light); font-style: italic; border-left: 3px solid var(--gold); padding-left: 1rem; margin-bottom: 1.5rem; }
.deep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.deep-item h4 { font-size: .9rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.deep-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.section-label { font-size: 1rem; font-weight: 600; margin-bottom: .8rem; }
.reading-text { font-size: .9rem; color: var(--text-muted); line-height: 1.8; }
.career-highlight { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1rem; background: rgba(108,63,197,.1); border-radius: var(--radius-sm); padding: 1rem; }
.career-icon { font-size: 1.5rem; flex-shrink: 0; }
.career-highlight p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.love-card { border-color: rgba(255,110,180,.2); background: rgba(255,110,180,.04); }
.two-col-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.mobile-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1rem; }
.big-number { font-family: 'Cinzel', serif; font-size: 3.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.vib-title { color: var(--cyan); font-size: .9rem; font-weight: 600; }
.info-pills { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.info-pill { background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: .7rem 1rem; font-size: .85rem; display: flex; gap: .6rem; }
.pill-label { color: var(--gold); font-weight: 600; white-space: nowrap; }
.lucky-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 1rem; }
.lucky-item { background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.lucky-icon { font-size: 1.5rem; display: block; margin-bottom: .4rem; }
.lucky-label { font-size: .7rem; color: var(--text-muted); display: block; text-transform: uppercase; letter-spacing: 1px; }
.lucky-val { font-size: .9rem; font-weight: 600; color: var(--gold-light); display: block; margin-top: .2rem; }
.result-footer-cta { text-align: center; padding: 2rem; }
.result-footer-cta p { color: var(--text-muted); margin-bottom: 1rem; }
.btn-secondary { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: .75rem 2rem; border-radius: 50px; font-size: .95rem; cursor: pointer; transition: background .25s, color .25s; }
.btn-secondary:hover { background: var(--gold); color: var(--navy); }

/* ── USER PROFILE SUMMARY ── */
.user-profile-summary {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.profile-row { display: flex; flex-direction: column; gap: 0.3rem; }
.profile-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.profile-value { font-size: 1rem; font-weight: 600; color: var(--text); }

/* ── PRICING PACKAGES ── */
.packages-section { margin: 4rem 0 2rem; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }
.package-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.package-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top, var(--card-glow, rgba(255,255,255,0.1)), transparent 70%);
  opacity: 0.5; pointer-events: none;
}
.popular-pkg { border-color: rgba(212,175,55,0.4); transform: scale(1.02); }
.popular-badge {
  position: absolute; top: 12px; right: -30px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 0.3rem 2.5rem; transform: rotate(45deg);
}
.pkg-title { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.pkg-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pkg-price { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.price-strike { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.price-actual { font-size: 2rem; font-weight: 700; color: var(--text); font-family: 'Cinzel', serif; }
.pkg-features { list-style: none; margin-bottom: 2rem; text-align: left; flex-grow: 1; }
.pkg-features li { font-size: 0.85rem; margin-bottom: 0.8rem; display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text); }
.pkg-features li.disabled { opacity: 0.4; text-decoration: line-through; }
.pkg-btn { width: 100%; padding: 0.8rem; font-size: 0.95rem; margin-top: auto; }

/* ── TRUST ── */
#trust { background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.trust-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 1.8rem; text-align: center; }
.trust-icon { font-size: 2rem; margin-bottom: .8rem; }
.trust-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.trust-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testi-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 1.5rem; }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: .8rem; }
.testi-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testi-author { font-size: .8rem; font-weight: 600; }
.testi-role { font-size: .75rem; color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  background: var(--navy2); border-top: 1px solid var(--glass-border);
  padding: 2rem 1.5rem; text-align: center;
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: .5rem; }
footer p { font-size: .8rem; color: var(--text-muted); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px); background: #1a1a2e; border: 1px solid var(--glass-border); color: var(--text); padding: .9rem 1.8rem; border-radius: 50px; font-size: .88rem; opacity: 0; transition: opacity .35s, transform .35s; z-index: 9999; white-space: nowrap; }
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-error { border-color: #ff4e4e; color: #ff8080; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 3D MINDBLOWING EFFECTS ── */
.step-card, .service-card, .trust-card, .testi-card, .form-wrapper, .num-card, .result-card, .package-card, .user-profile-summary {
  transform-style: preserve-3d;
  /* Removed will-change to prevent blurry rasterization */
}

.step-card h3, .step-card p, .step-num,
.service-icon, .service-card h3, .service-card p,
.form-wrapper form, .num-value, .num-symbol, .num-label, .num-title,
.pkg-title, .pkg-desc, .pkg-price, .pkg-features, .pkg-btn,
.trust-icon, .trust-card h3, .trust-card p,
.testi-stars, .testi-text, .testi-author, .testi-role {
  backface-visibility: hidden; /* Fixes text blur during 3D transform */
}

.step-card h3, .step-card p, .step-num { transform: translateZ(30px); }
.service-icon { transform: translateZ(50px); display: inline-block; }
.service-card h3, .service-card p { transform: translateZ(30px); }
.form-wrapper form { transform: translateZ(30px); }
.num-value { transform: translateZ(40px); display: block; }
.num-symbol { transform: translateZ(30px); }
.num-label, .num-title { transform: translateZ(20px); }
.pkg-title, .pkg-price { transform: translateZ(40px); }
.pkg-desc, .pkg-features { transform: translateZ(25px); }
.pkg-btn { transform: translateZ(50px); box-shadow: 0 10px 30px rgba(108,63,197,0.5); }
.trust-icon { transform: translateZ(40px); display: inline-block; }
.trust-card h3, .trust-card p { transform: translateZ(25px); }
.testi-stars, .testi-text { transform: translateZ(30px); }
.testi-author, .testi-role { transform: translateZ(20px); }

/* Float animation for hero */
.hero-title {
  animation: fadeDown 0.9s ease 0.1s both, floatTitle 4s ease-in-out infinite alternate !important;
}
@keyframes floatTitle {
  0% { transform: translateY(0px) scale(1); text-shadow: 0 0 20px rgba(212,175,55,0.1); }
  100% { transform: translateY(-10px) scale(1.02); text-shadow: 0 10px 30px rgba(212,175,55,0.3); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(6,6,15,.97); padding: 1rem 2rem; gap: 1rem; border-bottom: 1px solid var(--glass-border); }
  #nav-links.open { display: flex; }
  #burger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .form-wrapper { padding: 1.5rem; }
  .number-cards { gap: .7rem; }
  .num-card { flex: 1 1 90px; padding: .9rem .5rem; }
  .two-col-cards { grid-template-columns: 1fr; }
}

/* MODAL & SEO */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(6, 6, 15, 0.9); backdrop-filter: blur(8px); align-items: center; justify-content: center; } .modal.visible { display: flex; } .modal-content { background: var(--navy2); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem; max-width: 500px; width: 90%; box-shadow: 0 32px 80px rgba(108,63,197,.5); position: relative; animation: slideUp 0.3s ease-out; } .close-modal { position: absolute; right: 20px; top: 15px; color: var(--text-muted); font-size: 28px; font-weight: bold; cursor: pointer; transition: color 0.2s; } .close-modal:hover { color: #fff; } .modal h2 { font-family: 'Cinzel', serif; font-size: 1.8rem; margin-bottom: 0.5rem; } .modal p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; } .footer-seo-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--glass-border); } .footer-seo-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; } .footer-seo-links a:hover { color: var(--purple-light); }
