/* =========================================================
   VELNORA - AURORA ENGINE
   Landing Page V2
   ========================================================= */


/* =========================================================
   VARIABLES GLOBALES
   ========================================================= */

:root {

    --primary: #5865f2;
    --secondary: #8b5cf6;
    --accent: #f5c542;

    --background: #050816;

    --surface:
    rgba(255,255,255,0.08);

    --text:
    #ffffff;

    --muted:
    #a8b0c5;

    --border:
    rgba(255,255,255,0.12);

    --success:
    #22c55e;

    --shadow:
    0 20px 50px rgba(0,0,0,.35);

    --radius:
    20px;

}



/* =========================================================
   AURORA ENGINE DESIGN SYSTEM
   ========================================================= */

:root{

    /* ===========================
       Aurora Surface
    ============================ */

    --aurora-bg:#090B14;

    --aurora-surface:#111827;

    --aurora-surface-light:#182235;

    --aurora-card:rgba(18,26,43,.70);

    --aurora-border:rgba(255,255,255,.06);

    --aurora-hover:rgba(255,255,255,.05);

    /* ===========================
       Text
    ============================ */

    --aurora-title:#F8FAFC;

    --aurora-text:#CBD5E1;

    --aurora-muted:#94A3B8;

    /* ===========================
       Status
    ============================ */

    --aurora-green:#22C55E;

    --aurora-yellow:#FACC15;

    --aurora-orange:#F97316;

    --aurora-red:#EF4444;

    --aurora-blue:#3B82F6;

    --aurora-purple:#8B5CF6;

    /* ===========================
       Glow
    ============================ */

    --glow-green:0 0 18px rgba(34,197,94,.35);

    --glow-yellow:0 0 18px rgba(250,204,21,.35);

    --glow-red:0 0 18px rgba(239,68,68,.35);

    --glow-blue:0 0 18px rgba(59,130,246,.35);

    --glow-purple:0 0 20px rgba(139,92,246,.35);

    /* ===========================
       Radius
    ============================ */

    --radius-sm:12px;

    --radius-md:18px;

    --radius-lg:24px;

    --radius-xl:30px;

}



/* =========================================================
   RESET
   ========================================================= */


* {

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    min-height:100vh;

    font-family:
    'Inter',
    sans-serif;

    color:
    var(--text);

    background:
    var(--background);

    overflow-x:hidden;

}



a {

    text-decoration:none;

    color:inherit;

}



/* =========================================================
   BACKGROUND ENGINE
   ========================================================= */


.background {

    position:fixed;

    inset:0;

    z-index:-1;

    overflow:hidden;


    background:

    radial-gradient(
        circle at top,
        #111827,
        #050816 60%
    );

}



.gradient {


    position:absolute;

    inset:0;


    background:

    linear-gradient(
        120deg,
        rgba(88,101,242,.25),
        rgba(139,92,246,.15),
        transparent
    );


    animation:

    gradientMove 12s ease infinite;

}




.orb {


    position:absolute;


    border-radius:50%;


    filter:
    blur(90px);


    opacity:.35;


    animation:
    float 12s infinite ease-in-out;


}



.orb1 {


    width:350px;

    height:350px;


    background:#5865f2;


    top:5%;


    left:10%;


}



.orb2 {


    width:400px;

    height:400px;


    background:#8b5cf6;


    right:5%;


    top:40%;


    animation-delay:2s;


}



.orb3 {


    width:300px;

    height:300px;


    background:#22d3ee;


    bottom:5%;


    left:40%;


    animation-delay:4s;


}





@keyframes float {


0%,
100% {


transform:
translateY(0);


}


50% {


transform:
translateY(-40px);


}


}



@keyframes gradientMove {


0% {


transform:
translateX(0);


}



50% {


transform:
translateX(50px);


}



100% {


transform:
translateX(0);


}


}





/* =========================================================
   NAVBAR
   ========================================================= */


.navbar {


    position:

    relative;



    z-index:

    9999;



    width:
    min(1200px,90%);


    margin:
    30px auto;


    padding:
    18px 28px;


    display:flex;


    align-items:center;


    justify-content:space-between;


    background:
    rgba(255,255,255,.06);


    backdrop-filter:
    blur(20px);


    border:
    1px solid var(--border);


    border-radius:
    22px;


    box-shadow:
    var(--shadow);


}



/* Logo solo texto */


.logo {


    display:flex;


    align-items:center;


}



.logo-text h2 {


    font-family:
    'Poppins',
    sans-serif;


    font-size:
    22px;


    letter-spacing:
    2px;


}



.logo-text span {


    color:
    var(--muted);


    font-size:
    13px;


}





.nav-links {


    display:flex;


    gap:35px;


}



.nav-links a {


    color:
    var(--muted);


    transition:.3s;


}



.nav-links a:hover {


    color:white;


}




.nav-buttons {


    display:flex;


    gap:12px;


}



.btn-login,
.btn-register {


    padding:
    12px 22px;


    border-radius:
    14px;


    font-weight:
    600;


    transition:.3s;


}



.btn-login {


    border:
    1px solid var(--border);


}



.btn-login:hover {


    background:
    rgba(255,255,255,.1);


}



.btn-register {


    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );


}



.btn-register:hover {


    transform:
    translateY(-3px);


    box-shadow:
    0 10px 30px rgba(88,101,242,.4);


}



/* =========================================================
   HERO SECTION
   ========================================================= */


.hero {


    width:
    min(1200px,90%);


    margin:
    80px auto 120px;


    display:grid;


    grid-template-columns:
    1fr .8fr;


    align-items:center;


    gap:
    70px;


}





.hero-badge {


    display:inline-flex;


    padding:
    10px 18px;


    border-radius:
    50px;


    background:
    rgba(245,197,66,.12);


    border:
    1px solid rgba(245,197,66,.25);


    color:
    var(--accent);


    margin-bottom:
    25px;


    font-weight:
    600;


}





.hero h1 {


    font-family:
    'Poppins',
    sans-serif;


    font-size:
    clamp(42px,5vw,72px);


    line-height:
    1.1;


    margin-bottom:
    25px;


}




.hero h1 span {


    display:block;


    background:

    linear-gradient(
        90deg,
        #ffffff,
        #8b5cf6
    );


    -webkit-background-clip:text;


    color:transparent;


}





.hero p {


    color:
    var(--muted);


    font-size:
    18px;


    max-width:
    600px;


    line-height:
    1.7;


    margin-bottom:
    40px;


}





.hero-buttons {


    display:flex;


    gap:
    18px;


}





.btn-primary,
.btn-secondary {


    padding:
    15px 30px;


    border-radius:
    16px;


    font-weight:
    700;


    transition:.3s;


    position:relative;


    overflow:hidden;


}





.btn-primary {


    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );


}



.btn-primary:hover {


    transform:
    translateY(-5px);


    box-shadow:
    0 15px 40px rgba(88,101,242,.5);


}





.btn-secondary {


    border:
    1px solid var(--border);


    background:
    rgba(255,255,255,.05);


}




.btn-secondary:hover {


    background:
    rgba(255,255,255,.12);


}





.btn-primary::before,
.btn-secondary::before {


    content:"";


    position:absolute;


    top:0;


    left:-100%;


    width:100%;


    height:100%;


    background:

    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );


    transition:.5s;


}




.btn-primary:hover::before,
.btn-secondary:hover::before {


    left:100%;


}





/* =========================================================
   HERO STATS
   ========================================================= */


.hero-stats {


    display:flex;


    gap:
    40px;


    margin-top:
    60px;


}



.hero-stats div {


    display:flex;


    flex-direction:column;


}



.hero-stats strong {


    font-size:
    30px;


}



.hero-stats span {


    color:
    var(--muted);


}







/* =========================================================
   SERVER CARD
   ========================================================= */


.server-card {


    padding:
    35px;


    border-radius:
    30px;


    background:
    rgba(255,255,255,.08);



    backdrop-filter:
    blur(15px);



    border:
    1px solid var(--border);



    box-shadow:
    var(--shadow);



    transition:

    transform .3s ease,

    border-color .3s ease;



    will-change:
    transform;


}





.server-card:hover {


    transform:
    translateY(-8px);



    border-color:

    rgba(88,101,242,.5);


}







.status {


    display:flex;


    align-items:center;


    gap:
    10px;


    color:
    #22c55e;


    margin-bottom:
    25px;


}







.dot {


    width:
    12px;


    height:
    12px;


    background:
    #22c55e;


    border-radius:
    50%;


    box-shadow:
    0 0 15px #22c55e;


}







.server-card h3 {


    font-size:
    30px;


    margin-bottom:
    30px;


}







.server-info {


    display:grid;


    grid-template-columns:
    repeat(3,1fr);


    gap:
    15px;


}







.server-info div {


    padding:
    18px;


    border-radius:
    16px;


    background:
    rgba(0,0,0,.2);


}







.server-info span {


    display:block;


    color:
    var(--muted);


    font-size:
    13px;


}







.server-info strong {


    font-size:
    22px;


}







/* =========================================================
   PLANES
   ========================================================= */


.plans {


    width:
    min(1200px,90%);


    margin:
    auto auto 120px;


}





.section-title {


    text-align:center;


    margin-bottom:
    60px;


}





.section-title span {


    color:
    var(--accent);


    font-weight:
    700;


}





.section-title h2 {


    font-size:
    45px;


    margin:
    15px 0;


}





.section-title p {


    color:
    var(--muted);


}






.plans-grid {


    display:grid;


    grid-template-columns:
    repeat(4,1fr);


    gap:
    25px;


}






.plan-card {

    min-height:460px;

    border-radius:35px;

    padding:40px 30px;

    position:relative;

    overflow:hidden;


    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;


    background:

    rgba(255,255,255,.06);


    border:

    2px solid rgba(255,255,255,.12);


    backdrop-filter:blur(20px);


    transition:.4s;


    cursor:pointer;


}



.plan-card::before {


    content:"";


    position:absolute;


    inset:-2px;


    border-radius:35px;


    z-index:-1;


}



.plan-card::before {


    content:"";


    position:absolute;


    inset:-2px;


    border-radius:35px;


    z-index:-1;


}




.plan-card:hover {


    transform:
    translateY(-15px)
    scale(1.03);


    border-color:
    rgba(139,92,246,.8);


    box-shadow:
    0 25px 60px rgba(88,101,242,.35);


}





.plan-card h3 {


    position:absolute;


    top:
    25px;


    font-size:
    25px;


    transition:.3s;


}





.plan-card:hover h3 {


    transform:
    translateY(-5px);


}






.blur-content {


    width:90%;


    display:flex;


    flex-direction:column;


    gap:15px;


    filter:blur(4px);


    opacity:.65;


}



.plan-detail {


    width:100%;


    display:flex;


    justify-content:space-between;


    padding:18px 22px;


    border-radius:18px;


    background:

    rgba(255,255,255,.08);


    border:

    1px solid rgba(255,255,255,.15);


}



.plan-card span {


    position:absolute;


    font-weight:
    800;


    letter-spacing:
    2px;


}



/* ======================================
   PLANS MORE INFO
====================================== */


.plans-more-info {


    width:100%;


    margin-top:45px;


    display:flex;


    flex-direction:column;


    align-items:center;


    justify-content:center;


    gap:20px;


}



.plans-more-info p {


    font-size:22px;


    font-weight:600;


    margin:0;


    color:rgba(255,255,255,.85);


}



.plans-info-button {


    padding:

    12px 28px;


    border-radius:

    18px;



    text-decoration:none;


    font-weight:700;


    color:white;



    background:

    linear-gradient(
        135deg,
        #5865f2,
        #8b5cf6
    );



    transition:.3s;


}



.plans-info-button:hover {


    transform:

    translateY(-4px);



    box-shadow:

    0 12px 30px rgba(88,101,242,.45);


}






/* =========================================================
   SOPORTE + FOOTER
   ========================================================= */


.support {


    text-align:center;


    padding:
    80px 20px;


}





.support h2 {


    font-size:
    40px;


}





.support p {


    color:
    var(--muted);


    margin-top:
    15px;


}






footer {


    width:
    90%;


    margin:auto;


    padding:
    30px 0;


    border-top:
    1px solid var(--border);


    display:flex;


    justify-content:space-between;


    color:
    var(--muted);


}



/* =========================================================
   CENTRO DE AYUDA VELNORA
   ========================================================= */


#support-modal {


    display:none;


    position:fixed;


    inset:0;


    z-index:9999;


    background:

    rgba(0,0,0,.60);


    backdrop-filter:
    blur(15px);


    justify-content:center;


    align-items:center;


    padding:20px;


}





/* ======================================
   SUPPORT WINDOW FIX
====================================== */

.support-window {

    width: min(750px,95%);

    max-height:85vh;

    overflow-y:auto;
    overflow-x:hidden;

    box-sizing:border-box;

    padding:40px;

    border-radius:30px;

    position:relative;


    background:

    linear-gradient(
        145deg,
        rgba(20,25,55,.95),
        rgba(10,15,35,.95)
    );


    border:

    1px solid rgba(255,255,255,.15);


    box-shadow:

    0 30px 90px rgba(0,0,0,.65);


    animation:

    modalShow .35s ease;

}







@keyframes modalShow {


from {


    opacity:0;


    transform:

    translateY(40px)
    scale(.95);


}



to {


    opacity:1;


    transform:

    translateY(0)
    scale(1);


}


}







/* Botón cerrar */


#close-support {


    position:absolute;


    right:20px;


    top:20px;


    width:42px;


    height:42px;


    border-radius:50%;


    border:none;


    cursor:pointer;


    font-size:28px;


    line-height:1;


    color:white;



    background:

    rgba(255,255,255,.10);



    transition:.3s;


}





#close-support:hover {


    background:

    rgba(139,92,246,.5);


    transform:

    rotate(90deg);


}







/* Títulos */


.support-window h2 {


    font-family:
    'Poppins',
    sans-serif;


    font-size:
    32px;


    margin-bottom:
    10px;


}





.support-window > p {


    color:
    var(--muted);


}







/* Buscador */


.support-search input {


    width:100%;


    margin:
    25px 0;


    padding:
    15px 20px;


    border-radius:
    16px;


    outline:none;


    color:white;


    background:

    rgba(255,255,255,.07);



    border:

    1px solid rgba(255,255,255,.15);


    transition:.3s;


}





.support-search input:focus {


    border-color:
    var(--secondary);


    box-shadow:

    0 0 20px rgba(139,92,246,.35);


}







/* Categorías */


.faq-category {


    margin-top:
    30px;


}





.faq-category h3 {


    color:
    #c4b5fd;


    margin-bottom:
    15px;


}







/* Preguntas */


.faq-item {


    margin-bottom:
    12px;


}





.faq-item button {


    width:100%;


    text-align:left;


    padding:
    16px;


    border-radius:
    16px;


    cursor:pointer;


    color:white;



    background:

    rgba(255,255,255,.06);



    border:

    1px solid rgba(255,255,255,.12);



    transition:.3s;


}






.faq-item p {


    max-height:0;


    overflow:hidden;


    opacity:0;


    padding-top:0;


    padding-bottom:0;


    margin-top:8px;


    color:#cbd5e1;


    background:
    rgba(255,255,255,.04);


    border-radius:15px;


    transition:

    max-height .4s ease,

    opacity .3s ease,

    padding .3s ease;


}



.faq-item.active p {


    max-height:200px;


    opacity:1;


    padding:15px;


}





@keyframes faqShow {


from {


opacity:0;


transform:
translateY(-10px);


}


to {


opacity:1;


transform:
translateY(0);


}


}







/* Feedback */


.faq-feedback {


    text-align:center;


    margin-top:
    35px;


    padding-top:
    25px;


    border-top:

    1px solid rgba(255,255,255,.1);


}





.faq-feedback h3 {


    margin-bottom:
    15px;


}





.faq-feedback button {


    padding:
    12px 28px;


    margin:
    8px;


    border-radius:
    25px;


    border:none;


    cursor:pointer;


    color:white;



    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );



    transition:.3s;


}





.faq-feedback button:hover {


    transform:
    translateY(-4px);


    box-shadow:

    0 10px 30px rgba(88,101,242,.4);


}








/* Scroll del modal */

.support-window::-webkit-scrollbar {
    width: 6px;
}

.support-window::-webkit-scrollbar-thumb {

    background: linear-gradient(
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;

}




/* =========================================================
   RESPONSIVE
   ========================================================= */



@media(max-width:900px){


.navbar {


    flex-direction:
    column;


    gap:
    20px;


}



.nav-links {


    display:none;


}



.hero {


    grid-template-columns:
    1fr;


    text-align:center;


}



.hero-buttons,
.hero-stats {


    justify-content:center;


}



.plans-grid {


    grid-template-columns:
    1fr 1fr;


}



}





@media(max-width:600px){



.hero h1 {


    font-size:
    40px;


}



.hero-buttons {


    flex-direction:
    column;


}



.server-info {


    grid-template-columns:
    1fr;


}



.plans-grid {


    grid-template-columns:
    1fr;


}



.support-window {


    padding:
    25px;


}



.support-window h2 {


    font-size:
    25px;


}



footer {


    flex-direction:
    column;


    gap:
    15px;


    text-align:center;


}


}



/* =========================================================
   SUPPORT CARDS
========================================================= */


.support-grid {

    width:
    min(1100px,90%);

    margin:
    50px auto 0;


    display:grid;


    grid-template-columns:
    repeat(3,1fr);


    gap:
    25px;

}



/* =========================================================
   SUPPORT CARDS - PREMIUM GLASS EFFECT
   ========================================================= */


.support-card {


    position:
    relative;


    overflow:
    hidden;


    display:
    flex;


    flex-direction:
    column;



    padding:
    30px;


    border-radius:
    25px;



    background:

    rgba(255,255,255,.07);



    border:

    1px solid var(--border);



    backdrop-filter:

    blur(20px);



    box-shadow:

    0 15px 40px rgba(0,0,0,.25);



    transition:

    transform .6s cubic-bezier(.22,1,.36,1),

    box-shadow .6s ease,

    border-color .6s ease;


}




/* Brillo difuminado */

.support-card::before {


    content:"";


    position:absolute;


    top:-80%;


    left:-120%;


    width:70%;


    height:250%;



    background:


    linear-gradient(

        120deg,

        transparent 20%,

        rgba(255,255,255,.10),

        rgba(255,255,255,.35),

        rgba(255,255,255,.10),

        transparent 80%

    );



    filter:

    blur(25px);



    transform:

    rotate(25deg);



    opacity:

    0;



    transition:

    left 1.2s cubic-bezier(.22,1,.36,1),

    opacity .5s ease;



    pointer-events:

    none;

}





.support-card:hover::before {


    left:
    130%;


    opacity:
    1;


}






/* Movimiento de la tarjeta */


.support-card:hover {


    transform:

    translateY(-10px)
    scale(1.025);



    border-color:

    rgba(139,92,6f,.8);



    box-shadow:


    0 25px 60px rgba(88,101,242,.35);


}






/* Titulo */


.support-card h3 {


    position:

    relative;


    z-index:

    2;


    font-size:

    24px;


    margin-bottom:

    15px;



    transition:

    .3s;


}




.support-card:hover h3 {


    transform:

    translateY(-4px);


}






/* Texto */


.support-card p {


    position:

    relative;


    z-index:

    2;


    color:

    var(--muted);


    line-height:

    1.6;


    margin-bottom:

    25px;


}






/* Botones */


.support-card a {


    position:
    relative;


    z-index:
    2;


    display:
    inline-block;


    margin-top:
    auto;



    color:
    #c4b5fd;



    font-size:
    15px;



    font-weight:
    600;



    letter-spacing:
    .3px;



    transition:
    .35s ease;

}




.support-card a:hover {


    transform:

    translateY(-4px);



    box-shadow:

    0 10px 30px rgba(88,101,242,.45);


}



/* ======================================
   FAQ ACCORDION
====================================== */


.faq-item button {

    display:flex;

    justify-content:space-between;

    align-items:center;

}


.faq-item button strong {

    font-size:22px;

    transition:.3s;

}


.faq-item.active button strong {

    transform:rotate(45deg);

}



.faq-item p {


    max-height:0;


    overflow:hidden;


    opacity:0;


    transition:

    max-height .4s ease,

    opacity .3s ease,

    padding .3s ease;


    padding-top:0;

    padding-bottom:0;

}



.faq-item.active p {


    max-height:200px;


    opacity:1;


    padding-top:15px;

    padding-bottom:15px;



}



/* ================================
   SOPORTE - CONTACTO FINAL FAQ
================================ */

.support-footer {
    margin-top: 25px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    text-align: center;
}


.support-footer h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}


.support-footer p {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 15px;
}


.support-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}


.support-buttons button {
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}


.support-yes {
    background: #5865F2;
    color: white;
}


.support-no {
    background: #333;
    color: white;
}


.support-buttons button:hover {
    transform: translateY(-2px);
}


.support-contact {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    background: rgba(88,101,242,.12);
    border: 1px solid rgba(88,101,242,.35);
}


.support-contact a {
    display: block;
    margin-top: 8px;
    color: #8ea1ff;
    text-decoration: none;
    font-weight: 600;
}


.support-contact a:hover {
    color: white;
}



/* =================================
   SOPORTE - CONTACTO FINAL FAQ
================================= */

.support-contact {
    margin-top: 30px;
    padding: 25px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    display: block;
}


.support-contact h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}


.support-contact p {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 20px;
}


.support-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}


.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 25px;

    border-radius: 12px;

    background: #5865F2;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}


.support-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}



/* =====================================
   AJUSTES MODAL SOPORTE VELNORA
===================================== */


/* BOTÓN CERRAR MODAL */

#close-support {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: rgba(255,255,255,0.08);

    color: white;

    border: 1px solid rgba(255,255,255,0.15);

    font-size: 26px;

    line-height: 1;

    cursor: pointer;

    transition: .25s;

}


#close-support:hover {

    background: rgba(255,255,255,0.18);

    transform: rotate(90deg);

}



/* ==============================
   FAQ BOTONES
============================== */


.faq-item button {

    width: 100%;

    background: rgba(255,255,255,0.04);

    color: white;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 12px;

    padding: 15px 18px;

    text-align: left;

    cursor: pointer;

    font-size: 15px;

    transition: .25s;

}



.faq-item button:hover {

    background: rgba(255,255,255,0.08);

}



/* QUITAR AZUL DEL NAVEGADOR */

.faq-item button:focus,
.faq-item button:active,
.faq-item button:focus-visible {

    outline:none;

    background:
    rgba(255,255,255,.06);

    box-shadow:none;

}



/* RESPUESTAS */

.faq-item p {

    background:
    rgba(255,255,255,.03);

    border-left:none;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

}



/* ==================================
   CORRECCIÓN CAPA AZUL FAQ
================================== */


.faq-item button,
.faq-item button:hover,
.faq-item button:focus,
.faq-item button:active,
.faq-item button:focus-visible {

    background: transparent !important;

    background-color: rgba(255,255,255,0.04) !important;

    color: #ffffff !important;

    border-color: rgba(255,255,255,0.12) !important;

    box-shadow: none !important;

    outline: none !important;

}


.faq-item button::before,
.faq-item button::after {

    display: none !important;

}



#close-support {

    font-family:Arial, sans-serif;

}



/* ======================================
   FAQ OPEN STATE - VELNORA DARK STYLE
====================================== */


.faq-item.active button {

    background:
    rgba(255,255,255,.08) !important;

    border-color:
    rgba(139,92,246,.45) !important;

    color:white !important;

}



.faq-item.active p {

    background:
    rgba(255,255,255,.04) !important;


    color:
    #cbd5e1 !important;


    border:
    1px solid rgba(255,255,255,.10) !important;


    border-left:
    3px solid #8b5cf6 !important;


    border-radius:
    0 0 14px 14px !important;


    padding:
    15px !important;


    margin-top:
    6px !important;


    box-shadow:
    none !important;

}



/* ======================================
   FORCE FAQ FINAL STYLE
====================================== */


.faq-item {
    background: transparent !important;
}


.faq-item button {
    background: rgba(255,255,255,0.04) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
}


.faq-item button:hover {
    background: rgba(255,255,255,0.08) !important;
    transform: translateX(4px);
}


.faq-item button:focus,
.faq-item button:focus-visible,
.faq-item button:active {
    background: rgba(255,255,255,0.06) !important;
    outline: none !important;
    box-shadow: none !important;
}


.faq-item.active p,
.faq-item p {

    background: rgba(255,255,255,0.03) !important;

    color: #cbd5e1 !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    border-left: 3px solid #8b5cf6 !important;

    border-radius: 12px !important;

}



/* ======================================
   FAQ OVERFLOW DEFINITIVE FIX
====================================== */

.faq-item,
.faq-item button,
.faq-item p {
    max-width: 100% !important;
    box-sizing: border-box !important;
}


.faq-item {
    overflow: hidden !important;
    width: 100% !important;
}


.faq-item p {
    width: 100% !important;
    overflow-wrap: break-word !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}


/* Evita que flex/grid expanda el FAQ */
.faq-container,
.faq-list,
.faq-grid {
    min-width: 0 !important;
}



/* Ocultar scrollbar del modal de soporte */

.support-window {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer/Edge antiguo */
}

.support-window::-webkit-scrollbar {
    display: none; /* Chrome, Edge, Opera */
}



/* ======================================
   VELNORA FEATURES SECTION
====================================== */


.velnora-features {

    padding:120px 8%;

}



.feature-content {

    flex:1;

}



.features-header {

    max-width:850px;

    margin:auto;

    text-align:center;

}



.features-header h2 {

    margin-top:25px;

    font-size:48px;

    font-weight:700;

}



.features-header h2 span {

    background:

    linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );


    -webkit-background-clip:text;

    background-clip:text;

    color:transparent;

}



.features-header p {

    margin-top:20px;

    font-size:18px;

    opacity:.75;

    line-height:1.7;

}




.features-grid {

    margin-top:80px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:50px 40px;

}





.feature-card {

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:20px;


    padding:25px 10px;


    background:transparent;

    border:none;


    transition:.35s;

}





.feature-card::after {


    content:"";


    position:absolute;


    bottom:-20px;


    left:0;


    width:100%;


    height:1px;


    background:

    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );


}




.feature-card:hover {


    transform:translateY(-6px);


}




.feature-icon {


    flex-shrink:0;


    width:65px;


    height:65px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:20px;


    background:

    rgba(88,101,242,.15);


    border:

    1px solid rgba(139,92,246,.35);


    font-size:32px;


}




.feature-card h3 {

    margin:5px 0 12px;


    font-size:28px;


    font-weight:750;


    letter-spacing:.3px;


    background:

    linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );


    -webkit-background-clip:text;

    background-clip:text;

    color:transparent;


}





.feature-card p {

    margin:0;


    font-size:18px;


    line-height:1.7;


    opacity:.78;


    max-width:350px;


}




@media(max-width:900px){


    .features-grid {


        grid-template-columns:
        repeat(2,1fr);


    }


}





@media(max-width:600px){


    .features-grid {


        grid-template-columns:1fr;


    }


}



/* =========================================================
   PLAN LEVEL GLOW
   ========================================================= */


.plan-card {

    isolation:isolate;

}




.plan-card::before {


    content:"";


    position:absolute;


    inset:-2px;


    border-radius:32px;


    z-index:-1;


    opacity:.55;


    filter:blur(18px);


    transition:.4s;


}





/* =========================
   BASIC
========================= */


.plan-card.basic::before {


    background:

    linear-gradient(
        135deg,
        #38bdf8,
        transparent 70%
    );


}





/* =========================
   GAMER
========================= */


.plan-card.gamer::before {


    background:

    linear-gradient(
        135deg,
        #5865f2,
        #8b5cf6
    );


}







/* =========================
   PRO
========================= */


.plan-card.pro::before {


    background:

    linear-gradient(
        135deg,
        #8b5cf6,
        #c084fc
    );


}







/* =========================
   ULTRA
========================= */


.plan-card.ultra::before {


    background:

    linear-gradient(
        135deg,
        #facc15,
        #8b5cf6
    );


}





.plan-card:hover {


    transform:

    translateY(-15px)
    scale(1.05);


    box-shadow:

    0 35px 80px rgba(88,101,242,.35);


}



.plan-card {


    border:

    1px solid rgba(255,255,255,.12);


}



.plan-card.basic:hover {


    border-color:
    rgba(56,189,248,.7);


}



.plan-card.gamer:hover {


    border-color:
    rgba(88,101,242,.8);


}



.plan-card.pro:hover {


    border-color:
    rgba(192,132,252,.8);


}



.plan-card.ultra:hover {


    border-color:
    rgba(250,204,21,.8);


}



/* =========================================================
   PLAN BUTTON LOCKED
========================================================= */


.plan-button {


    margin-top:25px;


    padding:14px 25px;


    border-radius:18px;


    border:

    1px solid rgba(255,255,255,.15);


    background:

    rgba(255,255,255,.08);


    color:white;


    font-size:14px;


    font-weight:700;


    letter-spacing:.5px;


    backdrop-filter:blur(8px);


    opacity:.65;


    filter:blur(.4px);


    cursor:not-allowed;


    transition:.4s;


}



/* =========================================================
   PLAN BUTTON LOCKED
========================================================= */


.plan-button {

    margin-top:25px;

    padding:14px 28px;

    border-radius:18px;


    background:

    rgba(255,255,255,.08);


    border:

    1px solid rgba(255,255,255,.15);


    color:white;


    font-size:15px;


    font-weight:700;


    letter-spacing:.5px;


    opacity:.55;


    filter:blur(.6px);


    cursor:not-allowed;

}



/* =========================================================
   FOOTER
   ========================================================= */

.footer{

    margin-top:120px;

    border-top:1px solid rgba(255,255,255,.08);

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(0,0,0,.25)
    );

    backdrop-filter:blur(20px);

}



.footer-container{

    width:min(1200px,90%);

    margin:auto;

    padding:70px 0 50px;

    display:grid;

    grid-template-columns:
    1.2fr 2fr;

    gap:80px;

}



.footer-brand{

    display:flex;

    flex-direction:column;

    gap:20px;

}



.footer-logo{

    font-size:42px;

    font-weight:800;

    line-height:1;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        var(--primary),
        var(--secondary)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}



.footer-brand p{

    color:var(--muted);

    line-height:1.8;

    max-width:360px;

}



.footer-links{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;

}



.footer-column{

    display:flex;

    flex-direction:column;

}



.footer-column h4{

    position:relative;

    margin-bottom:22px;

    font-size:18px;

    color:white;

    font-weight:700;

}



.footer-column h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:45px;

    height:3px;

    border-radius:20px;

    background:
    linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

}



.footer-column a{

    color:var(--muted);

    text-decoration:none;

    margin:10px 0;

    transition:.30s;

}



.footer-column a:hover{

    color:white;

    padding-left:8px;

}



.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    padding:25px;

}



.footer-bottom p{

    color:var(--muted);

    font-size:14px;

}



/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media(max-width:950px){

    .footer-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .footer-links{

        grid-template-columns:
        repeat(2,1fr);

    }

}



@media(max-width:650px){

    .footer-links{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer-logo{

        font-size:34px;

    }

    .footer-brand{

        text-align:center;

        align-items:center;

    }

}



/* ======================================
   BACK TO TOP
====================================== */

#back-to-top {

    position: fixed;

    right: 30px;
    bottom: 30px;

    display: none;

    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.2);

    background:
    rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    color:white;

    font-family:Poppins,sans-serif;

    cursor:pointer;

    z-index:999;

    transition:.3s ease;

}


#back-to-top:hover {

    transform:translateY(-5px);

}



/* ======================================
   BACK TO TOP BUTTON
====================================== */


#back-to-top {


    position:fixed;


    right:30px;


    bottom:40px;



    width:55px;


    height:55px;



    border-radius:50%;



    border:none;



    display:flex;


    align-items:center;


    justify-content:center;



    font-size:25px;



    color:white;



    background:

    linear-gradient(
        135deg,
        #5865f2,
        #8b5cf6
    );



    cursor:pointer;



    opacity:0;


    visibility:hidden;



    transform:

    translateY(20px);



    transition:.4s;



    z-index:999;


}




#back-to-top.show {


    opacity:1;


    visibility:visible;



    transform:

    translateY(0);


}




#back-to-top:hover {


    transform:

    translateY(-5px)
    scale(1.05);



    box-shadow:

    0 15px 35px rgba(88,101,242,.45);


}



/* ======================================
   PLANS PAGE LAYOUT
====================================== */


.plans-page-grid {


    width:100%;


    display:flex;


    flex-direction:column;


    align-items:center;


    gap:40px;


}



/* ======================================
   PLANS PAGE CARDS
====================================== */


.plan-page-card {


    width:90%;


    max-width:900px;


    min-height:300px;


    margin:auto;


}



.plan-page-card .plan-detail {


    padding:20px 30px;


    font-size:16px;


}



/* ======================================
   PLANS PAGE CARDS
====================================== */


.plan-page-card {


    width:90%;


    max-width:900px;


    min-height:300px;


    margin:auto;


}



.plan-page-card .plan-detail {


    padding:20px 30px;


    font-size:16px;


}



/* ======================================
   VELNORA AURORA - PLANS PAGE
====================================== */


.plan-page-card {


    width:90%;


    max-width:900px;


    min-height:420px;


    padding:45px;


    border-radius:35px;


    position:relative;


    overflow:hidden;



    display:flex;


    flex-direction:column;


    align-items:center;



    background:

    rgba(255,255,255,.06);



    border:

    1px solid rgba(255,255,255,.15);



    backdrop-filter:

    blur(25px);



    box-shadow:

    0 25px 80px rgba(0,0,0,.25);



    transition:.4s;


}




.plan-page-card::before {


    content:"";


    position:absolute;


    inset:0;



    background:

    radial-gradient(
        circle at top,
        rgba(139,92,246,.25),
        transparent 45%
    );



    pointer-events:none;


}





.plan-page-card:hover {


    transform:

    translateY(-10px);



    box-shadow:

    0 35px 90px rgba(88,101,242,.35);


}





.plan-page-card h3 {


    position:relative;


    margin:0;



    font-size:35px;


    font-weight:800;



    background:

    linear-gradient(
        135deg,
        #ffffff,
        #b8b5ff
    );


    -webkit-background-clip:text;


    color:transparent;


}





.plan-description {


    margin-top:10px;


    margin-bottom:35px;


    opacity:.8;


    text-align:center;


    max-width:500px;


}



.plan-features {


    width:100%;


    display:grid;


    grid-template-columns:repeat(2,1fr);


    gap:20px;


}





.feature {


    display:flex;


    align-items:center;


    gap:15px;



    padding:20px;



    border-radius:20px;



    background:

    rgba(255,255,255,.07);



    border:

    1px solid rgba(255,255,255,.12);


}




.feature span {


    font-size:30px;


}





.feature p {


    margin:0;


    display:flex;


    flex-direction:column;


}





.feature strong {


    font-size:18px;


}



.plan-page-card .plan-button {


    margin-top:35px;


    width:220px;


    height:55px;


    border-radius:30px;



    border:none;



    color:white;



    font-weight:700;



    font-size:16px;



    cursor:pointer;



    background:

    linear-gradient(
        135deg,
        #5865f2,
        #8b5cf6
    );



    transition:.3s;


}




.plan-page-card .plan-button:hover {


    transform:

    scale(1.05);



    box-shadow:

    0 15px 35px rgba(88,101,242,.45);


}



/* ======================================
   PLAN GRID DETAILS
====================================== */


.plan-grid-details {


    width:100%;


    display:grid;


    grid-template-columns:repeat(2, 1fr);


    gap:25px;


    margin-top:35px;


}





.plan-section {


    min-height:170px;


    padding:25px;



    border-radius:25px;



    background:

    rgba(255,255,255,.06);



    border:

    1px solid rgba(255,255,255,.12);



    backdrop-filter:

    blur(15px);



    transition:.3s;


}





.plan-section:hover {


    transform:

    translateY(-5px);



    background:

    rgba(255,255,255,.10);


}





.plan-section h4 {


    margin:0 0 18px;


    font-size:20px;


}





.plan-section ul {


    margin:0;


    padding-left:20px;


    display:flex;


    flex-direction:column;


    gap:10px;


}





.plan-section li {


    opacity:.85;


    line-height:1.5;


}



/* ======================================
   PLAN COLORS AURORA
====================================== */


.plan-page-card.basic::before {


    background:

    radial-gradient(
        circle at top,
        rgba(88,101,242,.35),
        transparent 50%
    );


}




.plan-page-card.gamer::before {


    background:

    radial-gradient(
        circle at top,
        rgba(34,197,94,.35),
        transparent 50%
    );


}





.plan-page-card.pro::before {


    background:

    radial-gradient(
        circle at top,
        rgba(139,92,246,.40),
        transparent 50%
    );


}





.plan-page-card.ultra::before {


    background:

    radial-gradient(
        circle at top,
        rgba(245,158,11,.40),
        transparent 50%
    );


}



/* ======================================
   PLAN GRID DETAILS
====================================== */


/* ======================================
   PLANS PAGE MAIN CARD
====================================== */


.plan-page-card {

    width:95%;

    max-width:1100px;

    min-height:650px;

    padding:55px;

    justify-content:flex-start;

}




.plan-page-card h3 {


    margin-top:0;


    margin-bottom:25px;


    font-size:40px;


}




.plan-description {


    margin-bottom:45px;


}



/* ======================================
   VELNORA PLANS DETAILS GRID
====================================== */


.plan-grid-details {


    width:100%;


    display:grid;


    grid-template-columns:repeat(2, 1fr);


    gap:25px;


    margin-top:40px;


}





.plan-section {


    padding:25px;


    min-height:170px;


    border-radius:25px;



    background:

    rgba(255,255,255,.06);



    border:

    1px solid rgba(255,255,255,.12);



    backdrop-filter:

    blur(15px);



    transition:.3s;


}





.plan-section:hover {


    transform:

    translateY(-5px);


    background:

    rgba(255,255,255,.10);


}





.plan-section h4 {


    margin:0 0 18px;


    font-size:20px;


    font-weight:700;


}





.plan-section ul {


    margin:0;


    padding-left:20px;


    display:flex;


    flex-direction:column;


    gap:10px;


}





.plan-section li {


    opacity:.85;


    line-height:1.5;


}



/* ======================================
   USER ACCOUNT MENU - VELNORA AURORA
====================================== */


.user-menu {

    position: relative;

    display: flex;

    align-items: center;

}




.user-button {

    display: flex;

    align-items: center;

    gap: 10px;


    padding: 8px 18px;


    border-radius: 18px;


    border: 1px solid rgba(255,255,255,.15);


    background:

    linear-gradient(
        145deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.05)
    );


    color:white;


    cursor:pointer;


    backdrop-filter: blur(15px);


    transition:.3s;

}



.user-button:hover {


    transform: translateY(-2px);


    border-color: rgba(139,92,246,.8);


}



.user-avatar {

    width:42px;

    height:42px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    background:

    linear-gradient(
        135deg,
        #5865f2,
        #8b5cf6
    );


    border:

    1px solid rgba(255,255,255,.35);



    box-shadow:

    0 0 18px rgba(88,101,242,.55),
    inset 0 0 15px rgba(255,255,255,.20);



    position:relative;

}



/* Icono de perfil Aurora */

.profile-icon {


    width:13px;

    height:13px;


    background:white;


    border-radius:50%;


    position:relative;


    opacity:.95;


}



.profile-icon::after {


    content:"";


    position:absolute;


    width:26px;

    height:15px;


    background:white;


    border-radius:20px 20px 12px 12px;


    left:50%;


    transform:translateX(-50%);


    top:13px;


}

/* Brillo Aurora */

.user-avatar::before {


    content:"";


    position:absolute;


    width:70%;

    height:70%;


    border-radius:50%;


    background:

    rgba(255,255,255,.25);



    filter:blur(8px);



    top:-10px;

    left:-10px;


}



/* Movimiento suave */

.user-avatar {


    width:44px;

    height:44px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:16px;



    background:

    linear-gradient(
        145deg,
        rgba(88,101,242,.95),
        rgba(139,92,246,.95)
    );



    border:

    1px solid rgba(255,255,255,.25);



    box-shadow:

    0 8px 25px rgba(88,101,242,.35);



    position:relative;



    overflow:hidden;


}



/* brillo Aurora */

.user-avatar::before {


    content:"";


    position:absolute;


    width:70px;

    height:70px;


    background:

    radial-gradient(
        circle,
        rgba(255,255,255,.35),
        transparent 65%
    );



    top:-35px;

    left:-20px;



    opacity:.6;


}



.user-name {


    font-weight:600;

    font-size:15px;

}



.user-dropdown {


    position:absolute;


    top:calc(100% + 12px);


    right:0;


    width:220px;


    padding:12px;


    border-radius:22px;



    background:

    linear-gradient(
        145deg,
        rgba(20,20,35,.95),
        rgba(40,40,70,.90)
    );



    border:

    1px solid rgba(255,255,255,.12);



    backdrop-filter:blur(20px);



    box-shadow:

    0 20px 50px rgba(0,0,0,.35);



    opacity:0;


    visibility:hidden;


    transform:

    translateY(-10px);



    transition:.3s;


}




.user-menu:hover .user-dropdown {


    opacity:1;


    visibility:visible;


    transform:

    translateY(0);


}



.user-dropdown a {


    display:flex;


    align-items:center;


    gap:10px;


    padding:12px 15px;


    border-radius:14px;


    color:white;


    text-decoration:none;


    font-size:14px;


    transition:.25s;


}




.user-dropdown a:hover {


    background:

    rgba(88,101,242,.25);



    transform:

    translateX(5px);


}



/* ======================================
   VELNORA - SERVERS CARD
====================================== */


.servers-page {

    padding: 120px 40px 60px;

}



.servers-header {

    text-align:center;

    margin-bottom:50px;

}



.servers-header h1 {

    font-size:42px;

    background:
    linear-gradient(
        90deg,
        #5865f2,
        #8b5cf6
    );

    -webkit-background-clip:text;

    color:transparent;

}



.servers-header p {

    color:#a1a1aa;

}





.servers-grid {

    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(330px,1fr)
    );

    gap:30px;

}





.server-card {


    background:

    linear-gradient(
        145deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.04)
    );


    border:

    1px solid
    rgba(255,255,255,.15);



    backdrop-filter:

    blur(20px);



    border-radius:

    28px;



    padding:

    30px;



    box-shadow:

    0 20px 60px
    rgba(0,0,0,.35);



    transition:

    .35s ease;



}





.server-card:hover {


    transform:

    translateY(-8px);



}





.server-header {

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:28px;

    flex-wrap:nowrap;


    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;



}



.server-header h2 {


    margin:0;

    color:white;

    font-size:24px;


}



.server-header p {


    margin-top:8px;

    color:#9ca3af;


}





.server-status {


    padding:

    8px 16px;



    border-radius:

    20px;



    background:

    rgba(34,197,94,.15);



    color:

    #22c55e;



    font-weight:

    600;


}





.server-metrics {


    display:flex;

    flex-direction:column;

    gap:20px;


}





.metric {


    background:

    rgba(0,0,0,.25);



    padding:

    15px;



    border-radius:

    18px;


}





.metric h4 {


    margin:0 0 8px;

    color:#d4d4d8;

}



.metric p {


    margin:0;

    font-size:22px;

    color:white;

    font-weight:700;


}





/* =========================================================
   SERVER METRICS BARS
   ========================================================= */


.progress-bar {

    width:100%;

    height:10px;

    margin-top:12px;

    background:

    rgba(255,255,255,.10);


    border-radius:

    20px;


    overflow:hidden;


}



.progress-fill {

    height:100%;

    width:0%;


    border-radius:

    20px;


    background:

    linear-gradient(
        90deg,
        #5865f2,
        #8b5cf6
    );


    transition:

    width .8s ease;


}


.progress-fill.green {

    background:

    linear-gradient(
        90deg,
        #22c55e,
        #4ade80
    );

}



.progress-fill.yellow {

    background:

    linear-gradient(
        90deg,
        #eab308,
        #facc15
    );

}



.progress-fill.red {

    background:

    linear-gradient(
        90deg,
        #ef4444,
        #f87171
    );

}




.server-button {


    display:block;


    width:100%;


    margin-top:30px;


    padding:

    14px;



    border:none;



    border-radius:

    18px;



    cursor:pointer;



    background:

    linear-gradient(
        90deg,
        #5865f2,
        #8b5cf6
    );



    color:white;


    font-weight:700;


    font-size:16px;


    text-align:center;



    transition:

    .3s ease;



}



.server-button:hover {


    transform:

    translateY(-3px);



    box-shadow:

    0 10px 30px

    rgba(88,101,242,.4);


}



/* ======================================
   VELNORA - SERVERS PAGE STYLE
====================================== */


.servers-page {

    min-height:100vh;

    padding:

    140px 60px 80px;


    background:

    radial-gradient(
        circle at top,
        rgba(88,101,242,.20),
        transparent 40%
    );

}



.servers-header {

    text-align:center;

    margin-bottom:60px;

}



.servers-header h1 {

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;


    background:

    linear-gradient(
        90deg,
        #5865f2,
        #8b5cf6
    );


    -webkit-background-clip:text;

    color:transparent;

}



.servers-header p {

    color:#a1a1aa;

    font-size:18px;

}



.server-card {


    background:

    linear-gradient(
        145deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.03)
    );


    border:

    1px solid
    rgba(255,255,255,.15);



    border-radius:

    30px;



    padding:

    35px;



    backdrop-filter:

    blur(25px);



    box-shadow:

    0 25px 80px
    rgba(0,0,0,.45);



    transition:

    .35s ease;


}



.server-card:hover {


    transform:

    translateY(-10px);



    border-color:

    rgba(139,92,246,.5);


}



.server-status {


    padding:

    10px 18px;


    border-radius:

    30px;



    background:

    rgba(34,197,94,.15);



    border:

    1px solid
    rgba(34,197,94,.35);



    color:

    #22c55e;



    font-weight:

    700;


}



.metric {


    background:

    rgba(0,0,0,.25);



    border-radius:

    20px;



    padding:

    18px;



    border:

    1px solid
    rgba(255,255,255,.08);



}



.metric h4 {

    color:#a1a1aa;

}



.metric p {


    color:white;


    font-size:26px;


}



/* =========================================================
   SERVER STATUS
   ========================================================= */


.server-status {


    display:flex;


    align-items:center;


    gap:10px;


    padding:

    10px 18px;



    border-radius:

    30px;



    background:

    rgba(34,197,94,.12);



    border:

    1px solid

    rgba(34,197,94,.35);



    color:

    #22c55e;



    font-weight:

    700;



}





.status-dot {


    width:

    10px;


    height:

    10px;


    border-radius:

    50%;



    background:

    #22c55e;



    box-shadow:

    0 0 15px

    #22c55e;



    animation:

    statusPulse 2s infinite;


}





@keyframes statusPulse {


    0% {


        transform:

        scale(1);


        opacity:1;


    }



    50% {


        transform:

        scale(1.35);


        opacity:.6;


    }



    100% {


        transform:

        scale(1);


        opacity:1;


    }


}



.status-dot {

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:
    0 0 12px
    #22c55e;

    animation:
    statusPulse 2s infinite;

}


.status-dot.offline {

    background:#ef4444;

    box-shadow:
    0 0 12px
    #ef4444;

}



@keyframes statusPulse {


    0% {

        transform:scale(1);

    }


    50% {

        transform:scale(1.35);

    }


    100% {

        transform:scale(1);

    }

}



/* =========================================================
   AURORA SERVER DASHBOARD
   ========================================================= */



   /* =========================================================
   SERVER HERO
   ========================================================= */


.server-detail-page {


    width:
    min(1200px,90%);


    margin:
    50px auto;


}



.server-hero {


    padding:
    45px;


    border-radius:
    30px;


    background:

    rgba(255,255,255,.08);


    backdrop-filter:

    blur(25px);


    border:

    1px solid var(--border);


    box-shadow:

    var(--shadow);


    text-align:center;


    animation:

    fadeUp .8s ease;


}



.server-hero h1 {


    font-size:

    42px;


    font-family:

    'Poppins',
    sans-serif;


    margin-bottom:

    20px;


}



.server-ip {


    color:

    var(--muted);


    margin-top:

    20px;


    font-size:

    16px;


}




.server-tech {


    display:flex;


    justify-content:center;


    gap:

    15px;


    margin-top:

    25px;


}



.server-tech span {


    padding:

    8px 18px;


    border-radius:

    20px;


    background:

    rgba(255,255,255,.08);


    border:

    1px solid var(--border);


    color:

    var(--muted);


}



/* =========================================================
   SERVER METRICS
   ========================================================= */


.server-metrics {


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:

    25px;


    margin-top:

    30px;


}





.metric-card {


    padding:

    15px;

    min-height:

    100px;


    border-radius:

    26px;


    background:

    rgba(255,255,255,.08);


    backdrop-filter:

    blur(25px);


    border:

    1px solid var(--border);


    box-shadow:

    var(--shadow);


    transition:

    .35s ease;


    animation:

    fadeUp .8s ease;


}




.metric-card:hover {


    transform:

    translateY(-8px);


    background:

    rgba(255,255,255,.12);


}





.metric-card h3 {


    font-size:

    16px;


    color:

    var(--muted);


    margin-bottom:

    20px;


}





.metric-card strong {


    display:block;


    font-size:

    34px;


    font-family:

    'Poppins',
    sans-serif;


}



@media(max-width:900px){


    .server-metrics {


        grid-template-columns:

        1fr;


    }


}



/* =========================================================
   SERVER UPTIME
   ========================================================= */


.uptime-card {


    margin-top:

    30px;


    padding:

    30px 45px;


    border-radius:

    26px;


    background:

    rgba(255,255,255,.08);


    backdrop-filter:

    blur(25px);


    border:

    1px solid var(--border);


    box-shadow:

    var(--shadow);


    animation:

    fadeUp .8s ease;


}




.uptime-card h2 {


    text-align:center;


    font-family:

    'Poppins',
    sans-serif;


    font-size:

    22px;


    margin-bottom:

    30px;


}




.uptime-values {


    display:flex;


    justify-content:center;


    align-items:center;


    gap:

    70px;


}





.time-box {


    text-align:center;


}





.time-box strong {


    display:flex;


    justify-content:center;


    align-items:center;


    width:

    90px;


    height:

    150px;


    border-radius:

    18px;


    background:

    rgba(0,0,0,.25);


    border:

    1px solid rgba(255,255,255,.12);


    font-family:

    'Poppins',
    sans-serif;


    font-size:

    46px;


    transform:

    scaleY(1.1);


    font-weight:

    700;


    letter-spacing:

    3px;


    color:

    white;


    text-shadow:

    0 0 18px rgba(88,101,242,.7);



}


.time-box span {


    display:block;


    margin-top:

    12px;


    color:

    var(--muted);


    font-size:

    14px;


    text-transform:

    uppercase;


}





@media(max-width:900px){


    .uptime-values {


        gap:

        20px;


    }



    .time-box strong {


        width:

        80px;


        height:

        60px;


    }

    }



    /* =========================================================
   AURORA ENGINE
   DASHBOARD SIDEBAR
   ========================================================= */

.dashboard-sidebar{

    width:300px;
    min-width:300px;

    display:flex;
    flex-direction:column;

    padding:30px;

    border-radius:32px;

    position:relative;
    overflow:hidden;

    background:
linear-gradient(
    180deg,
    rgba(43,41,82,.92),
    rgba(33,30,66,.92)
);

border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(30px);

    box-shadow:
    0 25px 60px rgba(25,22,70,.35);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.dashboard-sidebar::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:
        radial-gradient(
            circle at top,
            rgba(88,101,242,.18),
            transparent 45%
        ),
        radial-gradient(
            circle at bottom,
            rgba(139,92,246,.12),
            transparent 50%
        );

}

.dashboard-sidebar>*{

    position:relative;
    z-index:2;

}

.dashboard-sidebar:hover{

    transform:translateY(-4px);

    border-color:rgba(88,101,242,.18);

    box-shadow:
        0 40px 90px rgba(0,0,0,.55);

}



/* ==========================
   LOGO
========================== */

.sidebar-brand{

    display:flex;

    align-items:center;

    gap:16px;

}

.sidebar-logo{

    width:56px;
    height:56px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    font-size:26px;
    font-weight:700;

    box-shadow:
        0 12px 35px rgba(88,101,242,.35);

}

.sidebar-brand h2{

    margin:0;

    color:#fff;

    font-size:22px;

    letter-spacing:1px;

}

.sidebar-brand span{

    color:rgba(255,255,255,.65);

    font-size:13px;

}



/* ==========================
   DIVIDER
========================== */

.sidebar-divider{

    width:100%;
    height:1px;

    background:
        rgba(255,255,255,.08);

}



/* ==========================
   MENU
========================== */

.sidebar-menu{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.sidebar-item{

    width:100%;

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px 18px;

    border:1px solid transparent;

    border-radius:18px;

    background:transparent;

    color:rgba(255,255,255,.72);

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:all .28s ease;

}

.sidebar-item:hover{

    transform:translateX(8px);

    background:rgba(255,255,255,.05);

    border-color:rgba(88,101,242,.18);

    color:#fff;

    box-shadow:
        inset 4px 0 0 #5865F2;

}

.sidebar-item.active{

    color:#fff;

    background:
        linear-gradient(
            90deg,
            rgba(88,101,242,.28),
            rgba(88,101,242,.10)
        );

    border:1px solid rgba(88,101,242,.30);

    box-shadow:
        inset 4px 0 0 #5865F2,
        0 0 20px rgba(88,101,242,.15);

}


/* ==========================
   FOOTER
========================== */

.sidebar-footer{

    margin-top:auto;

}

.server-indicator{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border-radius:16px;

    background:
        rgba(255,255,255,.04);

    color:#fff;

    font-size:14px;

}

.status-dot{

    position:relative;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#34D399;

    box-shadow:
        0 0 8px rgba(52,211,153,.65);

    animation:statusPulse 2s infinite;

}



.status-dot::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:#34D399;

    opacity:.45;

    animation:statusRipple 2s infinite;

}






/* =========================================================
   AURORA ENGINE
   DASHBOARD LAYOUT
   ========================================================= */

.server-layout{

    display:grid;

    grid-template-columns:280px minmax(0,1fr);

    gap:30px;

    align-items:start;

}


.server-content{

    display:flex;

    flex-direction:column;

    gap:24px;

    min-width:0;

}



/* =========================================================
   AURORA ENGINE
   DASHBOARD
   ========================================================= */

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:26px 30px;

    margin-bottom:28px;

    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.035)
        );

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    box-shadow:
        0 18px 55px rgba(0,0,0,.28);

}

.dashboard-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

    flex:1;

    min-width:0;

}

.dashboard-info h1{

    margin:10px 0 6px;

    font-size:42px;

    font-weight:800;

    letter-spacing:-1px;

    line-height:1.05;

    color:#fff;

}

.dashboard-info p{

    margin:0;

    font-size:15px;

    color:var(--muted);

    line-height:1.6;

    max-width:650px;

}

.server-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:fit-content;

    margin-bottom:12px;

    padding:8px 16px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            rgba(52,211,153,.18),
            rgba(52,211,153,.08)
        );

    border:
        1px solid rgba(52,211,153,.25);

    color:#34D399;

    font-size:13px;

    font-weight:700;

    letter-spacing:.4px;

}

.primary-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    flex-shrink:0;

    min-width:175px;

    height:52px;

    padding:0 26px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 10px 30px rgba(88,101,242,.28);

    transition:
        transform .25s,
        box-shadow .25s,
        filter .25s;

}

.primary-btn:hover{

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px rgba(88,101,242,.35);

    filter:brightness(1.05);

}

.primary-btn:active{

    transform:translateY(-1px);

}

@media(max-width:950px){

    .dashboard-header{

        flex-direction:column;

        align-items:flex-start;

        gap:24px;

        padding:24px;

    }

    .dashboard-info h1{

        font-size:34px;

    }

    .primary-btn{

        width:100%;

    }

}



/* =========================================================
   SERVER STATUS
   ========================================================= */

.server-status-card{

    position:relative;

    overflow:hidden;

    margin-bottom:28px;

    padding:28px;

    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.035)
        );

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    box-shadow:
        0 18px 55px rgba(0,0,0,.28);

}

.server-status-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    right:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(88,101,242,.45),
            transparent
        );

}

.server-status-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:26px;

}

.server-status-top h2{

    margin:0;

    font-size:28px;

    font-weight:700;

    color:#fff;

}

.server-status-top p{

    margin-top:8px;

    color:var(--muted);

    font-size:15px;

    line-height:1.6;

}

.server-version{

    display:flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    padding:10px 18px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            rgba(88,101,242,.18),
            rgba(139,92,246,.12)
        );

    border:
        1px solid rgba(88,101,242,.25);

    color:#C6D2FF;

    font-size:13px;

    font-weight:700;

    letter-spacing:.4px;

}

.server-status-grid{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:18px;

    margin-top:22px;

}

.status-box{

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-height:105px;

    padding:20px;

    border-radius:18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.025)
        );

    border:
        1px solid rgba(255,255,255,.06);

    transition:
        transform .25s,
        border-color .25s,
        background .25s;

}

.status-box:hover{

    transform:translateY(-3px);

    border-color:
        rgba(88,101,242,.25);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.03)
        );

}

.status-box small{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:12px;

    color:var(--muted);

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.8px;

    font-weight:700;

}

.status-box strong{

    font-size:20px;

    font-weight:700;

    color:#fff;

    line-height:1.25;

    word-break:normal;

    overflow-wrap:anywhere;

}

#server-status{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

}

@media(max-width:1100px){

    .server-status-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media(max-width:650px){

    .server-status-top{

        flex-direction:column;

        align-items:flex-start;

    }

    .server-version{

        width:100%;

        justify-content:center;

    }

    .server-status-grid{

        grid-template-columns:1fr;

    }

}



/* =========================================================
   METRICAS
   ========================================================= */

.dashboard-metrics{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:22px;

    margin-top:28px;

    align-items:stretch;

}

.metric-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:190px;

    padding:24px;

    border-radius:22px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.025)
        );

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:
        transform .25s,
        border-color .25s,
        box-shadow .25s;

}

.metric-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    right:0;

    height:2px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    opacity:.85;

}

.metric-card:hover{

    transform:translateY(-5px);

    border-color:
        rgba(88,101,242,.30);

    box-shadow:
        0 16px 36px rgba(0,0,0,.22);

}

.metric-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:16px;

    margin-bottom:20px;

}

.metric-title{

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:var(--muted);

}

.metric-status{

    display:flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    min-width:72px;

    padding:6px 12px;

    border-radius:999px;

    background:
        rgba(88,101,242,.12);

    color:var(--primary);

    font-size:12px;

    font-weight:700;

}

.metric-value{

    display:flex;

    align-items:flex-end;

    min-height:64px;

    margin-bottom:22px;

    font-size:34px;

    font-weight:800;

    line-height:1.05;

    letter-spacing:-1px;

    color:#fff;

    word-break:break-word;

}

.metric-value small{

    margin-left:8px;

    margin-bottom:4px;

    font-size:15px;

    font-weight:600;

    color:var(--muted);

}

.metric-bar{

    position:relative;

    width:100%;

    height:9px;

    margin-top:auto;

    overflow:hidden;

    border-radius:999px;

    background:
        rgba(255,255,255,.08);

}

.metric-progress{

    width:0;

    height:100%;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    transition:
        width .6s ease,
        background .3s ease;

}

.metric-card:hover .metric-progress{

    filter:brightness(1.08);

}

@media(max-width:850px){

    .dashboard-metrics{

        grid-template-columns:1fr;

    }

    .metric-card{

        min-height:175px;

    }

    .metric-value{

        font-size:30px;

    }

}

/* =========================================================
   CONTENT
   ========================================================= */

.dashboard-content{

    position:relative;

    overflow:hidden;

    min-height:500px;

    margin-top:30px;

    padding:30px;

    border-radius:28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.035)
        );

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.28);

}

.dashboard-content::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:
        radial-gradient(
            circle at top right,
            rgba(88,101,242,.08),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(139,92,246,.06),
            transparent 45%
        );

}

.dashboard-content>*{

    position:relative;

    z-index:2;

}

.dashboard-section{

    margin-bottom:32px;

}

.dashboard-section:last-child{

    margin-bottom:0;

}

.dashboard-section-title{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

    margin-bottom:18px;

}

.dashboard-section-title h2{

    margin:0;

    font-size:24px;

    font-weight:700;

    color:#fff;

}

.dashboard-section-title p{

    margin-top:6px;

    color:var(--muted);

    font-size:14px;

    line-height:1.6;

}

.dashboard-card{

    padding:24px;

    border-radius:20px;

    background:

        linear-gradient(

            180deg,

            rgba(255,255,255,.05),

            rgba(255,255,255,.025)

        );

    border:

        1px solid rgba(255,255,255,.06);

    transition:

        transform .25s,

        border-color .25s,

        box-shadow .25s;

}

.dashboard-card:hover{

    transform:translateY(-3px);

    border-color:

        rgba(88,101,242,.25);

    box-shadow:

        0 12px 35px rgba(0,0,0,.18);

}

.dashboard-empty{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:14px;

    min-height:240px;

    text-align:center;

    color:var(--muted);

}

.dashboard-empty h3{

    margin:0;

    color:#fff;

    font-size:24px;

    font-weight:700;

}

.dashboard-empty p{

    max-width:500px;

    line-height:1.7;

}

@media(max-width:768px){

    .dashboard-content{

        padding:22px;

        border-radius:22px;

    }

    .dashboard-section-title{

        flex-direction:column;

        align-items:flex-start;

    }

}



/* =========================================================
   VISTAS SPA
   ========================================================= */

.content-view{

    display:none;

    margin-top:30px;

}

.content-view.active{

    display:block;

}



/* =========================================================
   AURORA CONSOLE
   ========================================================= */

.console-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    padding:28px 34px;

    width:100%;

}

.console-header-left h2{

    margin:0;

    font-size:28px;

    font-weight:700;

}

.console-header-left p{

    margin-top:8px;

    color:var(--text-muted);

}

.console-server-status{

    display:flex;

    align-items:center;

    gap:25px;

}

.status-online{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:0 0 12px #22c55e;

}

.console-stats{

    display:flex;

    gap:20px;

}

.console-stat{

    text-align:center;

}

.console-stat span{

    display:block;

    color:var(--text-muted);

    font-size:12px;

}

.console-stat strong{

    font-size:18px;

}

.console-layout{

    display:grid;

    grid-template-columns:2fr 360px;

    gap:25px;

    align-items:start;

}

.terminal-card{

    background:
        linear-gradient(
            180deg,
            rgba(48,44,98,.92),
            rgba(35,32,74,.92)
        );

    border:1px solid rgba(255,255,255,.10);

    border-radius:28px;

    overflow:hidden;

    box-shadow:
        0 25px 60px rgba(25,22,70,.30);

}

.terminal-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 24px;

    background:
        linear-gradient(
            180deg,
            rgba(86,78,170,.18),
            rgba(255,255,255,.02)
        );

    border-bottom:
        1px solid rgba(255,255,255,.08);

}

.terminal-output{

    background:
        linear-gradient(
            180deg,
            #18162f,
            #141226
        );

    height:600px;

    overflow-y:auto;

    padding:22px;

    font-family:Consolas, monospace;

    color:#e8ebff;

    scrollbar-width:thin;

    scrollbar-color:
        rgba(139,92,246,.85)
        transparent;

}

.terminal-input{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

    border-top:1px solid var(--border);

}

.terminal-input input{

    flex:1;

    border:none;

    outline:none;

    background:transparent;

    color:white;

    font-size:15px;

}

.actions-column{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.action-card{

    background:
        linear-gradient(
            180deg,
            rgba(48,44,98,.92),
            rgba(35,32,74,.92)
        );

    border:1px solid rgba(255,255,255,.10);

    border-radius:28px;

    padding:24px;

    box-shadow:
        0 25px 60px rgba(25,22,70,.30);

}

.action-card h3{

    margin-bottom:18px;

}

.action-btn{

    width:100%;

    margin-bottom:12px;

    border:none;

    border-radius:14px;

    padding:15px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.action-btn:hover{

    transform:translateY(-2px);

}

.action-btn.start{

    background:#22c55e20;

    color:#22c55e;

}

.action-btn.restart{

    background:#f59e0b20;

    color:#f59e0b;

}

.action-btn.stop{

    background:#ef444420;

    color:#ef4444;

}

.action-btn.schedule{

    background:#3b82f620;

    color:#60a5fa;

}

.action-btn.cancel{

    background:#ef444420;

    color:#ef4444;

}



/* =========================================================
   Aurora Action Cards
   ========================================================= */

.aurora-action-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px;

    margin-bottom:18px;

    border-radius:22px;

    background:
linear-gradient(
    145deg,
    rgba(67,58,145,.55),
    rgba(52,45,118,.55)
);

    border:1px solid rgba(255,255,255,.05);

    cursor:pointer;

    overflow:hidden;

    transition:
        transform .30s ease,
        border-color .30s ease,
        box-shadow .30s ease;

}

.aurora-action-card:hover{

    transform:translateY(-4px);

    background:
linear-gradient(
    145deg,
    rgba(82,72,175,.70),
    rgba(60,52,135,.70)
);

}

/* Barra lateral de color */

.aurora-action-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    bottom:0;

    width:4px;

    border-radius:30px;

    background:#5865F2;

}

/* Icono */

.aurora-action-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:22px;

    font-weight:700;

    background:rgba(88,101,242,.12);

    color:#7C8CFF;

    transition:.30s;

}

/* Contenido */

.aurora-action-content{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.aurora-action-title{

    font-size:16px;

    font-weight:700;

    color:var(--aurora-title);

}

.aurora-action-description{

    font-size:13px;

    color:var(--aurora-muted);

    line-height:1.4;

}

/* ===========================
   Acción: Iniciar
=========================== */

#action-start::before{

    background:#22C55E;

}

#action-start:hover{

    border-color:#22C55E55;

    box-shadow:0 0 25px rgba(34,197,94,.20);

}

#action-start .aurora-action-icon{

    background:rgba(34,197,94,.12);

    color:#22C55E;

}

/* ===========================
   Acción: Reiniciar
=========================== */

#action-restart::before{

    background:#F59E0B;

}

#action-restart:hover{

    border-color:#F59E0B55;

    box-shadow:0 0 25px rgba(245,158,11,.20);

}

#action-restart .aurora-action-icon{

    background:rgba(245,158,11,.12);

    color:#F59E0B;

}

/* ===========================
   Acción: Detener
=========================== */

#action-stop::before{

    background:#EF4444;

}

#action-stop:hover{

    border-color:#EF444455;

    box-shadow:0 0 25px rgba(239,68,68,.20);

}

#action-stop .aurora-action-icon{

    background:rgba(239,68,68,.12);

    color:#EF4444;

}



/* =========================================================
   Aurora Control Center
   ========================================================= */

.aurora-control-panel{

    background:
        linear-gradient(
            180deg,
            rgba(48,44,98,.92),
            rgba(35,32,74,.92)
        );

    border:1px solid rgba(255,255,255,.10);

    border-radius:28px;

    padding:28px;

    box-shadow:
        0 25px 60px rgba(25,22,70,.30);

    backdrop-filter:blur(24px);

}

.aurora-control-panel h3{

    margin:0 0 28px;

    color:var(--aurora-title);

    font-size:22px;

    font-weight:700;

}

/* =========================================================
   Secciones
   ========================================================= */

.control-section{

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.06);

}

.control-section:first-of-type{

    border-top:none;

    padding-top:0;

}

.control-label{

    display:block;

    margin-bottom:18px;

    color:var(--aurora-muted);

    font-size:11px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

}

/* =========================================================
   Scheduler
   ========================================================= */

#scheduler-status{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    color:var(--aurora-text);

}

.scheduler-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#22C55E;

    box-shadow:
        0 0 15px rgba(34,197,94,.6);

    animation:
        auroraPulse 2s infinite;

}

/* =========================================================
   Animación
   ========================================================= */

@keyframes auroraPulse{

    0%{

        transform:scale(1);

        opacity:1;

    }

    50%{

        transform:scale(1.35);

        opacity:.45;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}



/* =========================================================
   Lucide Icons
   ========================================================= */

.aurora-action-icon svg{

    width:24px;

    height:24px;

    stroke-width:2.5;

}

.aurora-action-card:hover .aurora-action-icon svg{

    transform:scale(1.08);

    transition:transform .25s ease;

}



/* =========================================================
   BOTONES TERMINAL
   ========================================================= */

.terminal-clear,
#send-command{

    border:none;

    padding:12px 22px;

    border-radius:14px;

    font-weight:600;

    font-size:14px;

    cursor:pointer;

    color:#fff;

    transition:all .25s ease;

}

/* Limpiar */

.terminal-clear{

    background:
        linear-gradient(
            135deg,
            #5865F2,
            #7C5CFA
        );

}

.terminal-clear:hover{

    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(88,101,242,.35);

}

/* Enviar */

#send-command{

    background:
        linear-gradient(
            135deg,
            #22C55E,
            #16A34A
        );

}

#send-command:hover{

    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(34,197,94,.35);

}

/* Input */

#console-command{

    background:
        rgba(255,255,255,.05);

    border:

        1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:12px 16px;

    color:white;

}

#console-command:focus{

    border-color:#5865F2;

    box-shadow:
        0 0 18px rgba(88,101,242,.25);

}



/* =========================================================
   AURORA SCROLLBAR
   ========================================================= */

.terminal-output::-webkit-scrollbar{

    width:10px;

}

.terminal-output::-webkit-scrollbar-track{

    background:transparent;

}

.terminal-output::-webkit-scrollbar-thumb{

    border-radius:999px;

    background:
        linear-gradient(
            180deg,
            #8b5cf6,
            #5865f2
        );

}

.terminal-output::-webkit-scrollbar-thumb:hover{

    background:
        linear-gradient(
            180deg,
            #a78bfa,
            #6d7cff
        );

}

.terminal-output::-webkit-scrollbar-button{

    display:none;

}

.terminal-output::-webkit-scrollbar-corner{

    background:transparent;

}



/* =========================================================
   TERMINAL LINES
   ========================================================= */

.terminal-line{

    display:flex;

    align-items:center;

    gap:10px;

    padding:6px 12px;

    border-radius:10px;

    margin-bottom:4px;

    transition:.25s;

    white-space:pre-wrap;

    word-break:break-word;

    line-height:1.6;

}

.terminal-line:hover{

    background:
        rgba(255,255,255,.04);

}



/* =========================================================
   AURORA LOGS
   ========================================================= */

.log-date{

    color:#8b93b5;

    min-width:55px;

    font-weight:600;

}

.log-time{

    color:#7dd3fc;

    min-width:70px;

    font-weight:600;

}

.log-separator{

    color:rgba(255,255,255,.15);

}

.log-level{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:70px;

    padding:4px 10px;

    border-radius:999px;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.log-level.info{

    color:#22c55e;

    background:rgba(34,197,94,.18);

}

.log-level.warn{

    color:#f59e0b;

    background:rgba(245,158,11,.18);

}

.log-level.error{

    color:#ef4444;

    background:rgba(239,68,68,.18);

}

.log-level.debug{

    color:#38bdf8;

    background:rgba(56,189,248,.18);

}

.log-level.player{

    color:#3b82f6;

    background:rgba(59,130,246,.18);

}

.log-level.chat{

    color:#ec4899;

    background:rgba(236,72,153,.18);

}

.log-level.cmd,
.log-level.rcon{

    color:#94a3b8;

    background:rgba(148,163,184,.18);

}
.log-message{

    flex:1;

    color:#eef2ff;

}



/* ==========================================================
   AURORA CONSOLE V3
   ========================================================== */

.aurora-console{

    display:flex;
    flex-direction:column;

    width:100%;

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(18,26,43,.82),
        rgba(12,18,32,.92)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 25px 70px rgba(0,0,0,.35);

}


/* ===========================
   HEADER
=========================== */

.console-actions{

    display:flex;

    gap:18px;

    padding:24px;

    border-bottom:
    1px solid rgba(255,255,255,.06);

}


/* ===========================
   BOTONES
=========================== */

.console-action{

    flex:1;

    height:56px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    transition:.28s;

}


.console-action:hover{

    transform:translateY(-3px);

}


.console-action.start{

    background:
    rgba(34,197,94,.15);

    color:#22c55e;

}


.console-action.restart{

    background:
    rgba(250,204,21,.15);

    color:#facc15;

}


.console-action.stop{

    background:
    rgba(239,68,68,.15);

    color:#ef4444;

}


/* ===========================
   TOOLBAR
=========================== */

.terminal-toolbar{

    padding:18px 24px;

    display:flex;

    gap:15px;

    align-items:center;

    justify-content:space-between;

    border-bottom:
    1px solid rgba(255,255,255,.05);

}


/* ===========================
   BUSCADOR
=========================== */

.console-search{

    flex:1;

    height:46px;

    padding:0 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.04);

    color:white;

    outline:none;

    transition:.25s;

}


.console-search:focus{

    border-color:#5865f2;

    box-shadow:
    0 0 20px rgba(88,101,242,.25);

}


/* ===========================
   TERMINAL
=========================== */

#terminal-output{

    min-height:600px;

    max-height:600px;

    overflow:auto;

    padding:22px;

}


/* ===========================
   INPUT
=========================== */

.terminal-input{

    padding:20px;

    border-top:
    1px solid rgba(255,255,255,.05);

}


/* ===========================
   PANEL AVANZADO
=========================== */

.advanced-console{

    border-top:
    1px solid rgba(255,255,255,.05);

}


.advanced-toggle{

    width:100%;

    height:64px;

    border:none;

    background:transparent;

    color:white;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 24px;

    font-weight:700;

}


.advanced-content{

    display:none;

    padding:24px;

}


.advanced-content.open{

    display:block;

}



/* ==========================================================
   AURORA CONSOLE LAYOUT FIX
   ========================================================== */

.console-layout{

    display:block !important;

    width:100%;

}


.aurora-console{

    width:100% !important;

    max-width:none !important;

    margin:0 !important;

}


.terminal-card{

    width:100%;

}


.actions-column{

    display:none !important;

}


.terminal-column{

    width:100% !important;

    max-width:none !important;

    flex:1;

}



/* ==========================================================
   ACTION BUTTONS
   ========================================================== */

.console-actions{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    padding:28px;

}


.console-action{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:62px;

    border-radius:18px;

    font-weight:700;

    font-size:16px;

}


.console-action i{

    font-size:20px;

}



/* ==========================================================
   TERMINAL BACKGROUND
   ========================================================== */

#terminal-output{

    background:

    linear-gradient(
        180deg,
        #0b1020,
        #11182b
    );

    border-top:

    1px solid rgba(255,255,255,.05);

    border-bottom:

    1px solid rgba(255,255,255,.05);

}



/* ==========================================================
   AURORA TOOLBAR
   ========================================================== */

.console-toolbar{

    display:grid;

    grid-template-columns:1fr auto auto;

    gap:16px;

    padding:24px 28px 16px;

}


.console-search{

    height:52px;

    padding:0 18px;

    border:none;

    border-radius:16px;

    background:#1b2237;

    color:white;

    font-size:15px;

}


.console-search::placeholder{

    color:#7d87a6;

}


.console-clear,
.console-export{

    height:52px;

    padding:0 22px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    background:#232b45;

    color:white;

    transition:.25s;

}

.console-clear:hover,
.console-export:hover{

    transform:translateY(-2px);

    background:#2d3757;

}



/* ==========================================================
   AURORA FILTERS
   ========================================================== */

.console-filters{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:18px;

    padding:0 28px 22px;

    align-items:start;

}


.console-filters select{

    width:100%;

    height:40px;

    padding:0 12px;

    border:none;

    outline:none;

    border-radius:10px;

    background:rgba(255,255,255,.04);

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    appearance:auto;

    -webkit-appearance:auto;

    -moz-appearance:auto;

}


.console-filters select:hover{

    border-color:
        rgba(88,101,242,.45);

}


.console-filters select:focus{

    border-color:#5865f2;

    box-shadow:
        0 0 20px rgba(88,101,242,.20);

}



/* ==========================================================
   AUTO SCROLL SWITCH
   ========================================================== */

.autoscroll-switch{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    height:58px;

    padding:0 18px;

    border-radius:16px;

    background:#1b2237;

    border:
        1px solid rgba(255,255,255,.08);

    color:white;

}


.autoscroll-switch input{

    display:none;

}


.switch-slider{

    width:52px;

    height:28px;

    border-radius:999px;

    background:#2d3757;

    position:relative;

    transition:.30s;

    cursor:pointer;

}


.switch-slider::before{

    content:"";

    position:absolute;

    width:22px;

    height:22px;

    border-radius:50%;

    background:white;

    top:3px;

    left:3px;

    transition:.30s;

}


.autoscroll-switch input:checked + .switch-slider{

    background:#22c55e;

}


.autoscroll-switch input:checked + .switch-slider::before{

    left:27px;

}



/* ==========================================================
   AURORA CONSOLE HEADER
   ========================================================== */

.console-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    padding:28px 34px;

    width:100%;

}


.console-header-icon{

    width:64px;

    height:64px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#b48cff;

    background:

    linear-gradient(
        145deg,
        rgba(108,92,231,.35),
        rgba(88,101,242,.18)
    );

    border:1px solid rgba(180,140,255,.28);

    box-shadow:

    0 10px 35px rgba(108,92,231,.18);

}


.console-header-info{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:center;

    flex:1;

}


.console-header-info h2{

    text-align:left;

    margin:0;

    font-size:2rem;

    font-weight:700;

    color:#ffffff;

    letter-spacing:-.5px;

}


.console-header-info p{

    text-align:left;

    margin-top:6px;

    color:#b7bdd7;

    font-size:1rem;

    line-height:1.6;

}



/* ==========================================================
   AURORA SELECT
   ========================================================== */

.console-filters{

    display:grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        180px;

    gap:18px;

    padding:

        0 28px
        24px;

}



.aurora-select{

    flex:1;

    min-width:0;

    height:54px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:0 18px;

    border-radius:16px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.25s;

}



.aurora-select:hover{

    border-color:

        rgba(129,140,248,.45);

    transform:

        translateY(-2px);

    box-shadow:

        0 12px 30px rgba(88,101,242,.12);

}



.aurora-select-icon{

    display:none;

}




.aurora-label{

    flex-shrink:0;

    font-size:.82rem;

    font-weight:600;

    color:rgba(255,255,255,.72);

}



/* ==========================================================
   AURORA DROPDOWN
   ========================================================== */

.aurora-dropdown{

    position:relative;

    width:100%;

    align-self:start;

}


.aurora-dropdown-trigger{

    width:100%;

    height:88px;

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    background:

        linear-gradient(
            180deg,
            rgba(55,64,104,.45),
            rgba(37,44,72,.45)
        );

    border:

        1px solid rgba(255,255,255,.08);

    transition:.25s;

}


.aurora-dropdown-trigger:hover{

    border-color:#7c6cff;

    box-shadow:

        0 12px 30px rgba(108,92,231,.18);

}


.aurora-select-content{

    width:100%;

    display:flex;

    align-items:center;

    gap:12px;

}


.aurora-select-content strong{

    color:white;

    font-size:20px;

    font-weight:700;

}


.dropdown-arrow{

    color:#b9bfe6;

    transition:.25s;

}



.aurora-dropdown-menu{

    position:absolute;

    top:calc(100% + 10px);

    left:0;

    width:100%;

    display:none;

    padding:8px;

    border-radius:18px;

    background:rgba(24,30,52,.98);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

    z-index:999;

    overflow:hidden;

}


.aurora-dropdown.open .aurora-dropdown-menu{

    display:block;

}


.aurora-dropdown-menu button{

    width:100%;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border:none;

    background:transparent;

    color:#dbe3ff;

    cursor:pointer;

    transition:
        background .20s,
        color .20s,
        padding-left .20s;

}

.aurora-dropdown-menu button:hover{

    background:rgba(88,101,242,.18);

    color:#fff;

    padding-left:24px;

}

.aurora-dropdown-menu button.active{

    background:rgba(88,101,242,.28);

    color:#fff;

    font-weight:600;

}



/* =========================================================
   AURORA DROPDOWN
   ========================================================= */

.aurora-dropdown{

    position:relative;

    flex:1;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.aurora-dropdown-label{

    font-size:.75rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:rgba(255,255,255,.55);

}

.aurora-dropdown-trigger{

    width:100%;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 18px;

    border-radius:16px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    cursor:pointer;

    transition:.25s;

}

.aurora-dropdown-trigger:hover{

    border-color:rgba(88,101,242,.45);

    background:rgba(255,255,255,.06);

}

.aurora-dropdown.open .aurora-dropdown-trigger{

    border-color:#5865f2;

    box-shadow:0 0 20px rgba(88,101,242,.20);

}

.aurora-dropdown-selected{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#fff;

}

.dropdown-arrow{

    color:#9aa4c8;

    transition:.25s;

}

.aurora-dropdown.open .dropdown-arrow{

    transform:rotate(180deg);

}

.dropdown-dot{

    width:9px;

    height:9px;

    border-radius:50%;

    flex-shrink:0;

}

.dot-all{background:#8b5cf6;}
.dot-info{background:#22c55e;}
.dot-warn{background:#f59e0b;}
.dot-error{background:#ef4444;}
.dot-debug{background:#38bdf8;}
.dot-player{background:#3b82f6;}
.dot-chat{background:#ec4899;}
.dot-rcon{background:#94a3b8;}

.aurora-dropdown-menu{

    position:absolute;

    top:calc(100% + 8px);

    left:0;

    right:0;

    display:none;

    overflow:hidden;

    border-radius:18px;

    background:#171c2d;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

    z-index:500;

}

.aurora-dropdown.open .aurora-dropdown-menu{

    display:block;

}

.aurora-dropdown-menu button{

    width:100%;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border:none;

    background:none;

    color:#dbe3ff;

    cursor:pointer;

    transition:.2s;

}

.aurora-dropdown-menu button:hover{

    background:rgba(88,101,242,.18);

    color:#fff;

}



/* =========================================================
   CENTRO DE CONTROL AVANZADO
   ========================================================= */

.advanced-card{

    background:#181f35;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:22px;

    margin-top:20px;

}

.advanced-card h3{

    margin:0 0 18px;

    color:#fff;

    font-size:18px;

    font-weight:700;

}

.restart-buttons{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:12px;

    margin-bottom:20px;

}

.restart-btn{

    height:48px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

    color:#fff;

    background:#5865f2;

    transition:.25s;

}

.restart-btn:hover{

    transform:translateY(-2px);

    background:#6c79ff;

}

.restart-btn:disabled{

    opacity:.45;

    cursor:not-allowed;

}

.restart-status{

    padding:16px;

    border-radius:14px;

    background:#202846;

    color:#d8ddff;

    margin-bottom:16px;

}

.cancel-restart{

    width:100%;

    height:46px;

    border:none;

    border-radius:14px;

    background:#d64545;

    color:#fff;

    font-weight:700;

    cursor:pointer;

}

.cancel-restart:disabled{

    opacity:.45;

    cursor:not-allowed;

}

.tasks-list{

    padding:18px;

    border-radius:14px;

    background:#202846;

    color:#d8ddff;

}



.task-card{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.task-title{

    font-size:17px;

    font-weight:700;

    color:white;

}

.task-status{

    color:#d9defa;

}

.task-progress{

    width:100%;

    height:10px;

    background:#111728;

    border-radius:100px;

    overflow:hidden;

}

.task-progress-fill{

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        #5865f2,
        #8b5cf6
    );

    transition:width .8s linear;

}

.task-time{

    color:#b9c3ff;

    font-size:14px;

}



.restart-info{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.restart-title{

    font-size:18px;

    font-weight:700;

    color:#fff;

}

.restart-info strong{

    color:#fff;

}

.restart-info span{

    color:#bfc8ff;

}