:root{
  --bg:#07060a;
  --bg2:#0b0810;
  --panel:#100d15;
  --panel2:#15101d;
  --line:rgba(255,255,255,.075);
  --line2:rgba(185,117,255,.18);
  --text:#f7f3fb;
  --muted:#8e8499;
  --purple:#9b5cff;
  --purple2:#c491ff;
  --pink:#ee70d6;
  --glow:rgba(155,92,255,.28);
  --radius:22px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 75% 15%, rgba(106,42,160,.12), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(85,30,125,.10), transparent 30%),
    var(--bg);
  color:var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
select,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

.ambient{
  position:fixed;
  pointer-events:none;
  filter:blur(90px);
  opacity:.25;
  border-radius:50%;
  z-index:0;
}

.ambient-1{
  width:300px;
  height:300px;
  background:#6721b7;
  top:10%;
  right:7%;
}

.ambient-2{
  width:240px;
  height:240px;
  background:#432561;
  bottom:6%;
  left:20%;
}

.app{
  position:relative;
  z-index:1;
  display:flex;
  min-height:100vh;
}

.sidebar{
  position:fixed;
  inset:0 auto 0 0;
  width:250px;
  background:rgba(7,6,10,.93);
  border-right:1px solid var(--line);
  padding:24px 16px 18px;
  display:flex;
  flex-direction:column;
  backdrop-filter:blur(18px);
  z-index:50;
}

.brand{
  height:68px;
  display:flex;
  align-items:center;
  padding:0 9px 14px;
}

.brand img{
  max-width:150px;
  max-height:54px;
  object-fit:contain;
}

.server-selector{
  width:100%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  border-radius:16px;
  min-height:62px;
  color:var(--text);
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  text-align:left;
  transition:.2s;
}

.server-selector:hover{
  border-color:var(--line2);
  background:rgba(155,92,255,.05);
}

.server-avatar,
.user-avatar,
.profile-mini{
  flex:none;
  display:grid;
  place-items:center;
  background:
    linear-gradient(135deg,#7041a9,#9d62da);
  color:white;
  font-weight:800;
}

.server-avatar{
  width:38px;
  height:38px;
  border-radius:12px;
}

.server-info{
  min-width:0;
  flex:1;
  display:flex;
  flex-direction:column;
}

.server-info strong{
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.server-info span{
  margin-top:3px;
  color:var(--muted);
  font-size:10px;
}

.selector-arrow{
  color:var(--muted);
}

.nav{
  flex:1;
  margin-top:21px;
  overflow-y:auto;
  padding-right:4px;
}

.nav::-webkit-scrollbar{
  width:3px;
}

.nav::-webkit-scrollbar-thumb{
  background:#2c2038;
  border-radius:10px;
}

.nav-title{
  color:#5f5668;
  font-size:9px;
  letter-spacing:1.7px;
  font-weight:800;
  margin:22px 10px 7px;
}

.nav-item{
  position:relative;
  min-height:42px;
  display:flex;
  align-items:center;
  gap:12px;
  margin:3px 0;
  padding:0 12px;
  border-radius:11px;
  text-decoration:none;
  color:#978e9f;
  font-size:13px;
  font-weight:600;
  transition:.2s ease;
}

.nav-item:hover{
  color:white;
  background:rgba(255,255,255,.035);
}

.nav-item.active{
  color:#e7d7ff;
  background:
    linear-gradient(90deg,rgba(155,92,255,.14),rgba(155,92,255,.025));
}

.nav-item.active:before{
  content:"";
  position:absolute;
  left:0;
  width:2px;
  height:20px;
  border-radius:5px;
  background:var(--purple2);
  box-shadow:0 0 12px var(--purple);
}

.nav-icon{
  width:20px;
  text-align:center;
  color:#a376d1;
  font-size:15px;
}

.premium-link{
  color:#c998ff;
}

.sidebar-footer{
  min-height:58px;
  display:flex;
  align-items:center;
  gap:10px;
  border-top:1px solid var(--line);
  margin-top:12px;
  padding:16px 4px 0;
}

.user-avatar{
  width:34px;
  height:34px;
  border-radius:50%;
}

.sidebar-footer div:nth-child(2){
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
}

.sidebar-footer strong{
  font-size:12px;
}

.sidebar-footer span{
  font-size:10px;
  color:var(--muted);
  margin-top:2px;
}

.sidebar-footer button{
  border:0;
  color:#746a7c;
  background:transparent;
}

.main{
  width:calc(100% - 250px);
  margin-left:250px;
  min-height:100vh;
}

.topbar{
  height:72px;
  padding:0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  background:rgba(7,6,10,.72);
  backdrop-filter:blur(15px);
  position:sticky;
  top:0;
  z-index:25;
}

.menu-btn{
  display:none;
}

.topbar-title{
  color:#8f8497;
  font-size:12px;
  font-weight:600;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.status-pill{
  height:34px;
  padding:0 12px;
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  border-radius:999px;
  color:#a89daf;
  font-size:11px;
}

.status-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#73d49a;
  box-shadow:0 0 8px rgba(115,212,154,.65);
}

.icon-btn,
.profile-mini{
  width:34px;
  height:34px;
  border-radius:50%;
}

.icon-btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:#9c929f;
}

.profile-mini{
  border:0;
}

.page{
  display:none;
  max-width:1420px;
  margin:0 auto;
  padding:34px 38px 70px;
}

.page-active{
  display:block;
}

.hero{
  min-height:310px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(181,115,255,.14);
  border-radius:28px;
  padding:52px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 74% 45%,rgba(163,88,255,.20),transparent 25%),
    linear-gradient(110deg,#0e0a14 0%,#120b1c 55%,#09070d 100%);
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(to right,black,transparent 75%);
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:660px;
}

.eyebrow{
  display:block;
  color:#8e65b8;
  font-size:9px;
  font-weight:900;
  letter-spacing:2.1px;
  margin-bottom:11px;
}

.hero h1{
  margin:0;
  font-size:clamp(40px,5vw,70px);
  line-height:.98;
  letter-spacing:-3px;
  font-weight:680;
}

.hero h1 span{
  color:#a875dc;
  font-family:Georgia,serif;
  font-style:italic;
  font-weight:500;
}

.hero p{
  max-width:480px;
  color:#9d929f;
  font-size:14px;
  line-height:1.7;
  margin:22px 0 0;
}

.hero-actions{
  display:flex;
  gap:10px;
  margin-top:27px;
}

.primary-btn,
.secondary-btn,
.ghost-btn{
  min-height:42px;
  border-radius:12px;
  padding:0 18px;
  font-weight:700;
  font-size:12px;
}

.primary-btn{
  border:0;
  color:white;
  background:
    linear-gradient(135deg,#7443ad,#a05fe1);
  box-shadow:0 8px 30px rgba(117,63,169,.2);
}

.secondary-btn,
.ghost-btn{
  color:#a99dad;
  border:1px solid var(--line);
  background:rgba(255,255,255,.018);
}

.hero-cat{
  position:absolute;
  right:4%;
  bottom:-58px;
  width:min(370px,36vw);
  max-height:380px;
  object-fit:contain;
  filter:drop-shadow(0 0 34px rgba(148,78,235,.18));
  opacity:.94;
}

.section-head{
  margin:37px 0 17px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.section-head.compact{
  margin-top:0;
}

.section-head h2,
.simple-head h1{
  margin:0;
  font-family:Georgia,serif;
  font-size:27px;
  font-weight:500;
  letter-spacing:-.5px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.stat{
  min-height:117px;
  padding:26px 24px;
  border-right:1px solid var(--line);
}

.stat:last-child{
  border-right:0;
}

.stat-label{
  color:#756b7c;
  font-size:9px;
  font-weight:800;
  letter-spacing:1.6px;
  display:block;
}

.stat strong{
  font-family:Georgia,serif;
  font-weight:500;
  display:block;
  font-size:31px;
  margin:9px 0 3px;
}

.stat small{
  color:#6e6474;
  font-size:10px;
}

.purple-text{
  color:#ba84ef;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:32px;
  margin-top:40px;
}

.modules{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid var(--line);
}

.module-card{
  min-height:126px;
  display:grid;
  grid-template-columns:45px 1fr auto;
  align-items:center;
  gap:15px;
  padding:20px;
  text-align:left;
  color:white;
  border:0;
  border-bottom:1px solid var(--line);
  background:transparent;
  transition:.2s;
}

.module-card:nth-child(odd){
  border-right:1px solid var(--line);
}

.module-card:hover{
  background:rgba(155,92,255,.035);
}

.module-icon{
  width:43px;
  height:43px;
  border:1px solid rgba(178,115,235,.15);
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#b181dd;
  background:rgba(159,92,215,.045);
}

.module-card strong{
  display:block;
  font-family:Georgia,serif;
  font-weight:500;
  font-size:16px;
}

.module-card span{
  display:block;
  margin-top:6px;
  color:#776e7d;
  font-size:11px;
  line-height:1.5;
}

.module-card b{
  color:#665c6c;
  font-weight:400;
}

.side-column{
  border-left:1px solid var(--line);
  padding-left:31px;
}

.plus-box{
  position:relative;
  overflow:hidden;
  min-height:267px;
  padding:26px;
  border-radius:22px;
  background:
    radial-gradient(circle at 80% 75%,rgba(151,72,212,.19),transparent 40%),
    #100b17;
  border:1px solid rgba(159,95,212,.13);
}

.plus-kicker{
  color:#b37de3;
  font-size:9px;
  font-weight:900;
  letter-spacing:2px;
}

.plus-box h3{
  width:65%;
  margin:13px 0 10px;
  font-family:Georgia,serif;
  font-size:25px;
  font-weight:500;
}

.plus-box p{
  width:68%;
  color:#817587;
  font-size:11px;
  line-height:1.6;
}

.plus-box button{
  position:relative;
  z-index:2;
  margin-top:14px;
  min-height:37px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid rgba(181,117,235,.25);
  background:rgba(155,92,255,.08);
  color:#d4b3f4;
  font-size:10px;
  font-weight:800;
}

.plus-box img{
  position:absolute;
  width:145px;
  right:-20px;
  bottom:-26px;
  opacity:.85;
}

.activity-box{
  margin-top:18px;
  padding-top:19px;
  border-top:1px solid var(--line);
}

.activity-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.activity-head h3{
  font-family:Georgia,serif;
  font-size:17px;
  font-weight:500;
}

.activity-head span{
  color:#655d69;
  font-size:10px;
}

.activity-empty{
  padding:28px 5px 10px;
  text-align:center;
}

.activity-empty > span{
  color:#8c58b8;
}

.activity-empty strong{
  display:block;
  margin:11px 0 4px;
  font-size:12px;
}

.activity-empty p{
  margin:0 auto;
  max-width:240px;
  color:#6f6674;
  font-size:10px;
  line-height:1.6;
}

.simple-head{
  margin:18px 0 34px;
}

.simple-head h1{
  font-size:38px;
}

.simple-head p{
  color:#897f8e;
  font-size:13px;
}

.welcome-layout{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(330px,.8fr);
  gap:52px;
  align-items:start;
}

.settings-panel{
  border-top:1px solid var(--line);
}

.setting-line{
  min-height:96px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.setting-line strong{
  display:block;
  font-family:Georgia,serif;
  font-size:16px;
  font-weight:500;
}

.setting-line span{
  display:block;
  color:#746b79;
  font-size:11px;
  margin-top:5px;
}

.switch{
  width:44px;
  height:24px;
  border:1px solid var(--line);
  background:#17131c;
  border-radius:999px;
  padding:2px;
  transition:.2s;
}

.switch span{
  width:18px;
  height:18px;
  margin:0;
  background:#756b7c;
  border-radius:50%;
  transition:.2s;
}

.switch.on{
  background:#7944ad;
}

.switch.on span{
  transform:translateX(18px);
  background:white;
}

.field{
  display:block;
  margin-top:25px;
}

.field > span{
  color:#9f95a4;
  font-size:11px;
  font-weight:700;
  display:block;
  margin-bottom:9px;
}

select,
textarea{
  width:100%;
  border:1px solid var(--line);
  background:#0e0b12;
  color:#cfc6d4;
  border-radius:12px;
  outline:0;
}

select{
  height:45px;
  padding:0 13px;
}

textarea{
  resize:vertical;
  min-height:140px;
  padding:14px;
  line-height:1.6;
}

select:focus,
textarea:focus{
  border-color:rgba(167,98,224,.4);
}

.variables{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:10px;
}

.variables span{
  padding:5px 8px;
  color:#9e72c5;
  background:rgba(151,84,211,.07);
  border:1px solid rgba(151,84,211,.12);
  border-radius:6px;
  font-size:9px;
}

.form-actions{
  margin-top:30px;
  display:flex;
  justify-content:flex-end;
  gap:9px;
}

.preview-panel{
  position:sticky;
  top:105px;
  min-height:400px;
  overflow:hidden;
  border-left:1px solid var(--line);
  padding-left:35px;
}

.preview-label{
  display:block;
  color:#6f6576;
  font-size:9px;
  letter-spacing:1.7px;
  font-weight:900;
  margin-bottom:17px;
}

.discord-preview{
  position:relative;
  z-index:2;
  min-height:150px;
  padding:20px;
  display:flex;
  gap:13px;
  background:#121016;
  border:1px solid var(--line);
  border-radius:15px;
}

.discord-avatar{
  flex:none;
  width:42px;
  height:42px;
  border-radius:50%;
  overflow:hidden;
  background:#16111d;
}

.discord-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.discord-content{
  min-width:0;
}

.discord-content strong{
  font-size:13px;
}

.bot-tag{
  background:#7354c8;
  border-radius:3px;
  padding:2px 4px;
  margin-left:5px;
  font-size:8px;
}

.discord-content small{
  margin-left:5px;
  color:#716b74;
  font-size:9px;
}

.discord-content p{
  color:#b5adb9;
  font-size:12px;
  line-height:1.6;
}

.preview-cat{
  width:240px;
  display:block;
  margin:30px auto -35px;
  opacity:.72;
}

.placeholder-page{
  min-height:calc(100vh - 160px);
  text-align:center;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.placeholder-page.page-active{
  display:flex;
}

.placeholder-page img{
  width:min(330px,70vw);
  max-height:330px;
  object-fit:contain;
  opacity:.9;
}

.placeholder-page h1{
  font-family:Georgia,serif;
  font-weight:500;
  font-size:39px;
  margin:4px 0;
}

.placeholder-page p{
  color:#776e7d;
}

footer{
  max-width:1420px;
  margin:0 auto;
  padding:25px 38px 38px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:#5f5665;
}

footer span{
  letter-spacing:3px;
  font-size:10px;
}

footer small{
  font-size:9px;
}

.mobile-overlay{
  display:none;
}

@media (max-width:1100px){

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

  .stat:nth-child(2){
    border-right:0;
  }

  .stat:nth-child(-n+2){
    border-bottom:1px solid var(--line);
  }

  .content-grid{
    grid-template-columns:1fr;
  }

  .side-column{
    border-left:0;
    padding-left:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .activity-box{
    border-top:0;
    margin-top:0;
  }

  .welcome-layout{
    grid-template-columns:1fr;
  }

  .preview-panel{
    position:relative;
    top:auto;
    border-left:0;
    border-top:1px solid var(--line);
    padding:28px 0 0;
  }
}

@media (max-width:820px){

  .sidebar{
    transform:translateX(-100%);
    transition:.25s;
    box-shadow:30px 0 80px rgba(0,0,0,.5);
  }

  .sidebar.mobile-open{
    transform:translateX(0);
  }

  .mobile-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(3px);
    z-index:40;
    opacity:0;
    visibility:hidden;
    transition:.2s;
  }

  .mobile-overlay.show{
    opacity:1;
    visibility:visible;
  }

  .main{
    width:100%;
    margin-left:0;
  }

  .topbar{
    height:64px;
    padding:0 18px;
  }

  .menu-btn{
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    color:#b4a9ba;
    border:1px solid var(--line);
    border-radius:10px;
    background:#0e0b12;
  }

  .topbar-title{
    display:none;
  }

  .status-pill{
    font-size:9px;
  }

  .page{
    padding:20px 16px 48px;
  }

  .hero{
    min-height:420px;
    padding:31px 25px;
    align-items:flex-start;
  }

  .hero h1{
    font-size:44px;
    letter-spacing:-2px;
  }

  .hero-content{
    max-width:100%;
  }

  .hero p{
    max-width:280px;
  }

  .hero-cat{
    width:250px;
    right:-35px;
    bottom:-44px;
    opacity:.82;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-actions button{
    width:180px;
  }

  .section-head{
    align-items:center;
  }

  .section-head h2{
    font-size:23px;
  }

  .stats{
    grid-template-columns:1fr 1fr;
  }

  .stat{
    min-height:105px;
    padding:21px 16px;
  }

  .stat strong{
    font-size:26px;
  }

  .modules{
    grid-template-columns:1fr;
  }

  .module-card:nth-child(odd){
    border-right:0;
  }

  .side-column{
    grid-template-columns:1fr;
  }

  .plus-box{
    min-height:230px;
  }

  .simple-head h1{
    font-size:32px;
  }

  .form-actions{
    flex-direction:column-reverse;
  }

  .form-actions button{
    width:100%;
  }

  footer{
    padding:22px 16px 30px;
  }
}

@media (max-width:480px){

  .status-pill{
    padding:0 10px;
  }

  .icon-btn{
    display:none;
  }

  .hero{
    min-height:445px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-cat{
    width:230px;
    right:-45px;
  }

  .stats{
    grid-template-columns:1fr 1fr;
  }

  .stat{
    padding:18px 13px;
  }

  .stat-label{
    font-size:8px;
  }

  .module-card{
    min-height:110px;
    padding:15px 8px;
  }
}


/* =========================================================
   VELUNE — REFINAMENTO VISUAL
   ========================================================= */

/* LOGO — maior e perfeitamente centralizada */
.brand{
    width:100% !important;
    height:92px !important;
    min-height:92px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:2px 0 17px !important;
    margin:0 !important;
}

.brand img{
    display:block !important;

    width:205px !important;
    max-width:92% !important;
    height:72px !important;
    max-height:none !important;

    object-fit:contain !important;
    object-position:center !important;

    margin:0 auto !important;

    filter:
        drop-shadow(0 0 14px rgba(169,100,255,.12))
        drop-shadow(0 5px 18px rgba(0,0,0,.30));
}


/* SIDEBAR — acabamento mais premium */
.sidebar{
    background:
        radial-gradient(
            circle at 50% 3%,
            rgba(139,73,196,.07),
            transparent 19%
        ),
        rgba(7,6,10,.96) !important;

    border-right:1px solid rgba(190,135,255,.075) !important;
}


/* SELETOR DO SERVIDOR */
.server-selector{
    min-height:66px !important;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.028),
            rgba(146,82,201,.025)
        ) !important;

    border-color:rgba(255,255,255,.07) !important;
}

.server-selector:hover{
    border-color:rgba(174,108,235,.20) !important;
    background:rgba(150,84,208,.055) !important;
}


/* CONTEÚDO — ocupa melhor monitores grandes */
.page{
    max-width:1500px !important;
    padding-left:44px !important;
    padding-right:44px !important;
}


/* HERO */
.hero{
    min-height:330px !important;

    background:
        radial-gradient(
            circle at 79% 50%,
            rgba(155,82,225,.24),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 0%,
            rgba(109,50,157,.10),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #0e0a14 0%,
            #120b1c 54%,
            #09070d 100%
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 20px 60px rgba(0,0,0,.12);
}


/* GATO DO HERO — mais presente */
.hero-cat{
    right:5% !important;
    bottom:-48px !important;

    width:min(405px,37vw) !important;
    max-height:410px !important;

    opacity:1 !important;

    filter:
        drop-shadow(0 0 38px rgba(151,80,229,.22))
        drop-shadow(0 22px 35px rgba(0,0,0,.32)) !important;
}


/* TÍTULO */
.hero h1{
    text-shadow:0 5px 30px rgba(0,0,0,.25);
}

.hero h1 span{
    background:linear-gradient(
        90deg,
        #a875dc,
        #d19af5
    );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}


/* BOTÃO PRINCIPAL */
.primary-btn{
    background:
        linear-gradient(
            135deg,
            #7240a9,
            #a961e6
        ) !important;

    box-shadow:
        0 9px 28px rgba(124,62,177,.23),
        inset 0 1px 0 rgba(255,255,255,.12) !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.primary-btn:hover{
    transform:translateY(-1px);

    box-shadow:
        0 12px 35px rgba(132,67,191,.32),
        inset 0 1px 0 rgba(255,255,255,.15) !important;

    filter:brightness(1.06);
}


/* MÓDULOS */
.module-card{
    transition:
        background .22s ease,
        padding-left .22s ease,
        border-color .22s ease !important;
}

.module-card:hover{
    background:
        linear-gradient(
            90deg,
            rgba(157,91,215,.055),
            rgba(157,91,215,.012)
        ) !important;

    padding-left:24px;
}

.module-icon{
    box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}


/* VELUNE PLUS */
.plus-box{
    min-height:280px !important;

    background:
        radial-gradient(
            circle at 88% 78%,
            rgba(169,84,232,.27),
            transparent 38%
        ),
        radial-gradient(
            circle at 15% 0%,
            rgba(112,59,157,.08),
            transparent 35%
        ),
        #100b17 !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 15px 45px rgba(0,0,0,.13);
}


/* mostra melhor o rosto da mascote do Plus */
.plus-box img{
    width:155px !important;

    right:-6px !important;
    bottom:-12px !important;

    opacity:.96 !important;

    filter:
        drop-shadow(0 0 22px rgba(156,78,219,.18))
        drop-shadow(0 15px 22px rgba(0,0,0,.25));
}


/* ÁREA DE ATIVIDADE */
.activity-box{
    padding-bottom:12px;
}


/* TOPO */
.topbar{
    background:
        linear-gradient(
            90deg,
            rgba(7,6,10,.88),
            rgba(10,7,13,.78)
        ) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:820px){

    .brand{
        height:84px !important;
        min-height:84px !important;
        padding-bottom:13px !important;
    }

    .brand img{
        width:190px !important;
        height:66px !important;
    }

    .page{
        padding:
            20px 16px 48px !important;
    }

    .hero{
        min-height:430px !important;
        padding:31px 25px !important;
    }

    .hero-cat{
        width:260px !important;
        right:-28px !important;
        bottom:-40px !important;
    }

    .plus-box img{
        width:150px !important;
        right:-5px !important;
        bottom:-10px !important;
    }
}


@media (max-width:480px){

    .brand img{
        width:185px !important;
    }

    .hero{
        min-height:450px !important;
    }

    .hero-cat{
        width:235px !important;
        right:-38px !important;
        bottom:-38px !important;
    }
}

/* =========================================================
   VELUNE — DISCORD / SELETOR REAL
   ========================================================= */

.server-select-wrap{
    position:relative;
    width:100%;
}

.server-dropdown{
    position:absolute;
    left:0;
    right:0;
    top:72px;
    z-index:100;

    display:none;
    overflow:hidden;

    padding:6px;

    border:1px solid rgba(180,115,235,.16);
    border-radius:15px;

    background:rgba(14,10,19,.98);

    box-shadow:
        0 22px 60px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.025);

    backdrop-filter:blur(20px);
}

.server-dropdown.open{
    display:block;
}

.guild-option{
    width:100%;
    min-height:54px;

    display:flex;
    align-items:center;
    gap:11px;

    padding:8px;

    color:#c9c0ce;
    text-align:left;

    border:0;
    border-radius:11px;

    background:transparent;
}

.guild-option:hover{
    background:rgba(157,91,215,.08);
    color:white;
}

.guild-option.active{
    background:rgba(157,91,215,.11);
    color:#e5d1fa;
}

.guild-option-avatar{
    width:36px;
    height:36px;
    flex:none;

    overflow:hidden;

    display:grid;
    place-items:center;

    border-radius:11px;

    background:linear-gradient(135deg,#694093,#9b61cb);

    color:white;
    font-size:12px;
    font-weight:800;
}

.guild-option-avatar img,
.server-avatar img,
.user-avatar img,
.profile-mini img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.guild-option-info{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.guild-option-info strong{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;

    font-size:11px;
}

.guild-option-info span{
    margin-top:3px;

    color:#6f6575;
    font-size:9px;
}

.user-avatar,
.profile-mini{
    overflow:hidden;
}

.profile-mini{
    padding:0;
}

.server-selector .selector-arrow{
    transition:transform .2s ease;
}

.server-select-wrap.open .selector-arrow{
    transform:rotate(180deg);
}

.auth-error{
    color:#d68fa8 !important;
}

/* =========================================================
   STATUS REAL DOS SERVIDORES
   ========================================================= */

.guild-option{
    position:relative;
}

.guild-option-info{
    flex:1;
}

.guild-option-status{
    margin-left:auto;
    flex:none;

    font-size:8px;
    font-weight:800;
    letter-spacing:.3px;

    padding:5px 7px;
    border-radius:999px;
}

.guild-option-status.installed{
    color:#a6dfbc;
    background:rgba(90,190,130,.07);
    border:1px solid rgba(105,211,147,.13);
}

.guild-option-status.missing{
    color:#a98dbf;
    background:rgba(155,92,255,.06);
    border:1px solid rgba(155,92,255,.12);
}

.server-status-installed{
    color:#8fcba7 !important;
}

.server-status-missing{
    color:#a98dbf !important;
}

.install-velune-box{
    margin-top:25px;
    padding:22px 0;

    display:none;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.install-velune-box.show{
    display:flex;
}

.install-velune-copy strong{
    display:block;
    font-family:Georgia,serif;
    font-size:17px;
    font-weight:500;
}

.install-velune-copy span{
    display:block;
    margin-top:5px;
    color:#766d7b;
    font-size:11px;
}

.install-velune-btn{
    flex:none;
    min-height:40px;
    padding:0 16px;

    border:0;
    border-radius:11px;

    color:white;
    font-size:11px;
    font-weight:800;

    background:linear-gradient(135deg,#7140a8,#a45fe3);
}

#statStatus{
    font-size:25px;
}

@media(max-width:600px){
    .guild-option-status{
        font-size:7px;
    }

    .install-velune-box{
        align-items:flex-start;
        flex-direction:column;
    }

    .install-velune-btn{
        width:100%;
    }
}
