/*
Theme Name: Raxus Dark
Description: Premium cosmic event brand — Raxus 2026
Version: 3.0
*/

/* ========================
   FONTS
======================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,400;0,600;0,700;0,900;1,700&display=swap');

/* ========================
   CSS TOKENS
======================== */
:root {
  /* Core palette */
  --bg:         #05040f;
  --bg-alt:     #08071a;
  --nav-bg:     rgba(5,4,15,0.92);

  /* Violet spectrum */
  --v1:  #7c3aed;   /* deep violet   */
  --v2:  #8b5cf6;   /* accent violet */
  --v3:  #a78bfa;   /* mid violet    */
  --v4:  #c4b5fd;   /* light violet  */

  /* Complementary */
  --pink:   #d946ef;
  --indigo: #4338ca;
  --blue:   #3b82f6;

  /* Text */
  --text:     #f1f5f9;
  --text-dim: rgba(255,255,255,0.45);
  --text-muted: rgba(255,255,255,0.22);

  /* Borders */
  --border:     rgba(139,92,246,0.14);
  --border-mid: rgba(139,92,246,0.28);
  --border-hi:  rgba(196,181,253,0.45);

  /* Radius */
  --r:    20px;
  --r-sm: 12px;
  --r-xs: 8px;

  /* Fonts */
  --f-display: 'Bebas Neue', sans-serif;
  --f-ui:      'Exo 2', sans-serif;
  --f-body:    'Rajdhani', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ========================
   RESET & BASE
======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Global cosmic background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 10% 0%,  rgba(76,29,149,.16) 0%, transparent 55%),
    radial-gradient(ellipse 70%  60% at 90% 100%, rgba(139,92,246,.1) 0%, transparent 55%),
    radial-gradient(ellipse 55%  45% at 50% 45%,  rgba(217,70,239,.04) 0%, transparent 60%);
}

img { max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ========================
   STICKY FOOTER LAYOUT
======================== */
.main,
.page-wrap,
.profile-wrap {
  min-height: calc(100vh - 64px - 280px);
}

/* ========================
   SECTION SHARED
======================== */
.section {
  position: relative; z-index: 1;
  padding: 110px 0;
}
.section--tight { padding: 72px 0; }

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 50px;
  font-family: var(--f-ui);
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--v3);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--v3); box-shadow: 0 0 8px var(--v3);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* Section headings */
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 2px; line-height: 1.05;
  color: #fff;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--v4) 0%, var(--v2) 50%, var(--pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  margin-top: 14px;
  font-size: 1.05rem; font-weight: 500;
  color: var(--text-dim); line-height: 1.6;
  max-width: 560px;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  margin: 0;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--f-ui); font-size: .88rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .3s var(--ease);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--v1) 0%, var(--v2) 100%);
  color: #fff;
  box-shadow: 0 6px 28px rgba(139,92,246,.42), 0 0 0 1px rgba(196,181,253,.12) inset;
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139,92,246,.55), 0 0 0 1px rgba(196,181,253,.2) inset;
}
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-ghost {
  background: rgba(139,92,246,.08);
  border: 1px solid var(--border-mid);
  color: var(--v3);
}
.btn-ghost:hover {
  background: rgba(139,92,246,.15);
  border-color: var(--border-hi);
  color: var(--v4);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: .95rem; border-radius: 14px; }

/* ========================
   CARDS — base glass
======================== */
.glass-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .4s var(--ease);
}
.glass-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(196,181,253,.08) inset;
}

/* ========================
   FOOTER — rt-footer
======================== */
.rt-footer {
  background: rgba(3, 2, 12, 0.97);
  border-top: 1px solid rgba(139,92,246,.15);
  padding: 64px 0 40px;
  font-family: var(--f-body);
  position: relative; z-index: 2;
}
.rt-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.6), rgba(196,181,253,.35), rgba(139,92,246,.4), transparent);
}
.rt-footer-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 32px;
  display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start;
}
.rt-footer-brand { flex: 0 0 220px; }
.rt-footer-brand-name {
  font-family: var(--f-display);
  font-size: 1.6rem; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--v4), var(--v2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px; display: block;
}
.rt-footer-brand-tagline {
  font-size: .82rem; color: var(--text-muted); font-weight: 500;
  line-height: 1.5;
}
.rt-footer-col { flex: 1 1 150px; min-width: 130px; }
.rt-footer-col-right {
  flex: 1 1 240px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.rt-footer-title {
  font-size: .67rem; font-weight: 700; letter-spacing: .18em;
  color: rgba(139,92,246,.55); margin-bottom: 18px;
  text-transform: uppercase; display: block;
}
.rt-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rt-footer-links a {
  color: rgba(255,255,255,.4); text-decoration: none;
  font-size: .9rem; transition: color .2s, padding-left .2s;
}
.rt-footer-links a:hover { color: var(--v4); padding-left: 4px; }
.rt-footer-socials { display: flex; gap: 10px; margin-top: 6px; }
.rt-footer-social {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(139,92,246,.07); border: 1px solid rgba(139,92,246,.18);
  color: rgba(255,255,255,.5); transition: all .22s;
}
.rt-footer-social:hover {
  background: rgba(139,92,246,.18); border-color: rgba(139,92,246,.45);
  color: var(--v4); transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(139,92,246,.25);
}
.rt-footer-social svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.rt-footer-payments { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.rt-payment-badge {
  background: rgba(139,92,246,.06); border: 1px solid rgba(139,92,246,.16);
  border-radius: var(--r-xs); padding: 5px 12px;
  font-size: .76rem; color: rgba(255,255,255,.45); white-space: nowrap;
}
.rt-footer-status {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.45);
}
.rt-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80; flex-shrink: 0;
}
.rt-footer-copy { font-size: .76rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .rt-footer-inner { flex-direction: column; gap: 32px; }
  .rt-footer-col-right { align-items: flex-start; }
  .rt-footer-payments { justify-content: flex-start; }
  .rt-footer-brand { flex: 1; }
}

/* ========================
   SCROLL REVEAL
======================== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}