:root{
  --bg:#05030c;
  --text:#f7f1ff;
  --muted:#cfc3df;
  --purple:#8b5cf6;
  --purple2:#c084fc;
  --border:rgba(192,132,252,.22);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  min-height:100%;
  background:
    linear-gradient(180deg, rgba(5,3,12,.78), rgba(5,3,12,.96)),
    url('/assets/img/hero-xenorvia.png') center top / cover fixed no-repeat;
  color:var(--text);
  font-family:Inter,Segoe UI,Arial,sans-serif;
}

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(5,3,12,.94);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(16px);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
}

.brand img{
  width:56px;
  height:56px;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 0 28px rgba(139,92,246,.32);
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
  padding:8px;
  border-radius:24px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(192,132,252,.14);
}

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:14px;
  color:#f4edff;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

.nav-links a:hover,
.nav-links a.active{
  background:rgba(139,92,246,.28);
  color:#fff;
  border:1px solid rgba(192,132,252,.35);
}

.nav-links a.nav-discord{
  background:linear-gradient(135deg,#5865F2,#7c3aed);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 10px 28px rgba(88,101,242,.25);
}

.page-hero{
  padding:82px 0 42px;
  background:
    linear-gradient(90deg, rgba(5,3,12,.92), rgba(22,9,48,.68), rgba(5,3,12,.78)),
    url('/assets/img/hero-xenorvia.png') center center / cover no-repeat;
  border-bottom:1px solid var(--border);
}

.eyebrow{
  color:var(--purple2);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.page-hero h1{
  margin:10px 0 16px;
  font-size:clamp(2.4rem, 5vw, 4rem);
  line-height:1;
}

.page-hero p{
  max-width:850px;
  color:#eee7ff;
  font-size:1.08rem;
  line-height:1.6;
}

.page-main{
  padding:56px 0;
}

.grid.three{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.card,
.product,
.product-panel,
.support-box,
.status-big-card{
  background:linear-gradient(145deg, rgba(12,8,28,.88), rgba(7,5,16,.82));
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  box-shadow:0 24px 80px rgba(0,0,0,.42);
}

.status-big-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-bottom:28px;
}

.status-left{
  display:flex;
  align-items:center;
  gap:18px;
}

.status-dot{
  width:14px;
  height:14px;
  border-radius:999px;
  background:#ef4444;
  box-shadow:0 0 18px rgba(239,68,68,.7);
}

.status-dot.online{
  background:#22c55e;
  box-shadow:0 0 18px rgba(34,197,94,.7);
}

.status-numbers{
  text-align:right;
}

.status-numbers strong{
  display:block;
  font-size:clamp(2.2rem,5vw,4rem);
  line-height:1;
}

.btn,
.page-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}

.btn.primary,
.page-actions .primary{
  background:linear-gradient(135deg,#8b5cf6,#6d28d9);
}

.page-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:28px;
  align-items:start;
}

.product-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.product small{
  color:var(--purple2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer{
  padding:34px 0;
  background:rgba(5,3,12,.94);
  border-top:1px solid var(--border);
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer p,
.footer a,
.copyright{
  color:rgba(245,240,255,.72);
}

.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.copyright{
  width:min(1180px, calc(100% - 40px));
  margin:22px auto 0;
  padding-top:16px;
  border-top:1px solid rgba(192,132,252,.16);
  font-size:.9rem;
}

.discord-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:135px;
  height:52px;
  padding:0 22px;
  border-radius:18px;
  background:linear-gradient(135deg,#5865F2,#7c3aed);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 14px 36px rgba(88,101,242,.35);
}

.beta-modal{
  position:fixed;
  inset:0;
  z-index:99999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(2,1,8,.74);
  backdrop-filter:blur(10px);
}

.beta-modal.hidden{
  display:none;
}

.beta-card{
  width:min(560px, calc(100% - 34px));
  padding:30px 34px;
  border-radius:24px;
  text-align:center;
  background:linear-gradient(145deg, rgba(13,9,30,.98), rgba(7,5,16,.98));
  border:1px solid rgba(192,132,252,.34);
  box-shadow:0 30px 100px rgba(0,0,0,.78), 0 0 36px rgba(139,92,246,.22);
}

.beta-label{
  display:inline-flex;
  margin-bottom:16px;
  padding:7px 16px;
  border-radius:14px;
  background:rgba(139,92,246,.20);
  border:1px solid rgba(192,132,252,.32);
  font-family:"Courier New", monospace;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.22em;
}

.beta-card h2{
  margin:0 0 16px;
  color:#fff;
  font-family:"Courier New", monospace;
  font-size:1.45rem;
  line-height:1.2;
  letter-spacing:.035em;
  text-transform:uppercase;
  text-shadow:0 3px 0 rgba(0,0,0,.75), 0 0 18px rgba(139,92,246,.45);
}

.beta-card p{
  margin:0 auto;
  max-width:470px;
  color:#ded3f2;
  font-size:1rem;
  line-height:1.6;
}

.beta-card button{
  margin-top:22px;
  min-width:140px;
  min-height:46px;
  border:0;
  border-radius:15px;
  background:linear-gradient(135deg,#8b5cf6,#6d28d9);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

@media(max-width:900px){
  .nav{
    flex-direction:column;
    align-items:flex-start;
    padding:14px 0;
  }

  .nav-links{
    justify-content:flex-start;
    width:100%;
  }

  .grid.three,
  .split,
  .product-panel{
    grid-template-columns:1fr;
  }

  .status-big-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .status-numbers{
    text-align:left;
  }
}

/* XENORVIA_TEAM_CREDIT_V1 */
.xv-team-credit {
  margin: 18px auto 0;
  padding-top: 14px;
  max-width: 980px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(235, 241, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.xv-team-credit strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

/* XENORVIA_TEAM_CREDIT_CENTER_V2 */
footer .xv-team-credit,
.xv-team-credit {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  justify-self: center !important;
  align-self: center !important;
  grid-column: 1 / -1 !important;
  flex-basis: 100% !important;
}

/* XENORVIA_TEAM_CREDIT_FINAL_CENTER_V3 */
.xv-team-credit-bar {
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  padding: 16px 20px 24px !important;
  grid-column: 1 / -1 !important;
  flex-basis: 100% !important;
}

.xv-team-credit-bar span {
  display: block !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

/* XENORVIA_ADMIN_PANEL_BUTTON_V1 */
.xv-admin-panel-bar {
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 18px auto 0 !important;
  padding: 12px 20px 0 !important;
  grid-column: 1 / -1 !important;
  flex-basis: 100% !important;
}

.xv-admin-panel-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(235, 241, 255, 0.88) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18) !important;
  transition: transform .16s ease, border-color .16s ease, background .16s ease !important;
}

.xv-admin-panel-button:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.10) !important;
  color: #ffffff !important;
}

/* XENORVIA_ADMIN_PANEL_STORE_ONLY_V2 */
.xv-admin-panel-store-only {
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 24px auto 4px !important;
  padding: 16px 20px 0 !important;
  clear: both !important;
  position: relative !important;
  z-index: 50 !important;
}

.xv-admin-panel-store-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.92) !important;
  font-size: .9rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.22) !important;
}

.xv-admin-panel-store-button:hover {
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(255,255,255,.32) !important;
  color: #fff !important;
}

/* XENORVIA_TS_WINDOWS_DOWNLOAD_CSS_START */
.xv-ts-win-box{
  width:100%;
  max-width:1120px;
  margin:26px auto 34px;
  padding:0 18px 0 42px;
}

.xv-ts-win-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(120,180,255,.20);
  background:
    radial-gradient(circle at 15% 0%, rgba(47,156,255,.16), transparent 34%),
    linear-gradient(135deg, rgba(15,23,42,.92), rgba(7,12,24,.94));
  box-shadow:0 14px 36px rgba(0,0,0,.28);
}

.xv-ts-win-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:.04em;
  color:#fff;
  background:linear-gradient(135deg, #2176ff, #35c2ff);
  box-shadow:0 10px 26px rgba(47,156,255,.30);
}

.xv-ts-win-label{
  display:block;
  margin-bottom:5px;
  color:#82d4ff;
  font-size:.76rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.xv-ts-win-content h2{
  margin:0 0 5px;
  color:#fff;
  font-size:1.28rem;
  line-height:1.25;
}

.xv-ts-win-content p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.96rem;
  line-height:1.55;
}

.xv-ts-win-action{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:7px;
  white-space:nowrap;
}

.xv-ts-win-action a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 17px;
  border-radius:12px;
  background:linear-gradient(135deg, #238cff, #19baff);
  color:#fff!important;
  font-weight:850;
  text-decoration:none!important;
  box-shadow:0 10px 24px rgba(25,186,255,.26);
  transition:transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.xv-ts-win-action a:hover{
  transform:translateY(-1px);
  filter:brightness(1.07);
  box-shadow:0 14px 28px rgba(25,186,255,.34);
}

.xv-ts-win-action small{
  color:rgba(255,255,255,.52);
  font-size:.78rem;
}

@media (max-width:760px){
  .xv-ts-win-box{
    padding:0 18px;
  }

  .xv-ts-win-inner{
    grid-template-columns:1fr;
    align-items:flex-start;
  }

  .xv-ts-win-action{
    width:100%;
    align-items:stretch;
    white-space:normal;
  }

  .xv-ts-win-action a{
    width:100%;
  }
}
/* XENORVIA_TS_WINDOWS_DOWNLOAD_CSS_END */


/* XENORVIA_PAGINA_FORO_INICIO */

.xenorvia-foro-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 197, 94, 0.18), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(5, 18, 26, 0.96), rgba(7, 44, 39, 0.96), rgba(7, 80, 57, 0.92));
}

.xenorvia-foro-hero .hero-content {
  max-width: 760px;
}

.xenorvia-foro-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(83, 255, 188, 0.28);
  color: #b8ffd7;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.xenorvia-foro-hero .small-note {
  margin-top: 14px;
  color: rgba(216, 255, 240, 0.75);
  font-size: 14px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: rgba(8, 18, 24, 0.72);
  border: 1px solid rgba(83, 255, 188, 0.16);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.card h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  color: #d8fff0;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .xenorvia-foro-hero {
    min-height: 440px;
  }
}

/* XENORVIA_PAGINA_FORO_FIN */

