/* ==========================================
   CYBERPANEL V2 - STYLE.CSS
========================================== */

/* RESET */

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

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
    min-height:100vh;
    line-height:1.6;
}

/* ========================================== */
/* SCROLLBAR */
/* ========================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#00ff9d;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#00d17f;
}

/* ========================================== */
/* BACKGROUND */
/* ========================================== */

.background{
    position:fixed;
    inset:0;
    z-index:-2;
    background:
    radial-gradient(circle at top left,#00ff9d22,transparent 40%),
    radial-gradient(circle at bottom right,#00d4ff22,transparent 40%),
    #050505;
}

.background::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px);
    background-size:40px 40px;
}

/* ========================================== */
/* CONTAINER */
/* ========================================== */

.container{
    width:min(1200px,100%);
    margin:auto;
    padding-inline:20px;
}

/* ========================================== */
/* SECTION */
/* ========================================== */

section{
    width:100%;
}

.panel,
.advantages,
.rules,
.contact{
    width:min(1200px,100%);
    margin:40px auto;
    padding:40px 25px;
}

.advantages{

    padding:90px 20px;

}

.advantages h2{

    text-align:center;

    margin-bottom:18px;

}

.adv-grid{

    max-width:1200px;

    margin:auto;

}

/* ========================================== */
/* CARD */
/* ========================================== */

.panel,
.announcement-box,
.summary-card,
.adv-card,
.rules,
.contact,
.modal-content{

    background:rgba(18,18,18,.9);

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    backdrop-filter:blur(18px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);

}

/* ========================================== */
/* TITLE */
/* ========================================== */

h1{
    font-family:'Orbitron',sans-serif;
}

h2{
    font-family:'Orbitron',sans-serif;
    font-size:32px;
    margin-bottom:30px;
}

h3{
    font-size:22px;
}

p{
    color:#b8b8b8;
}

/* ========================================== */
/* BUTTON */
/* ========================================== */

button{

    border:none;

    cursor:pointer;

    transition:.3s;

    font-family:'Poppins',sans-serif;

}

.btn-primary,
.btn-secondary,
.btn-order{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary{

    background:#00ff9d;

    color:#000;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,255,157,.35);

}

.btn-secondary{

    border:2px solid #00ff9d;

    color:#00ff9d;

}

.btn-secondary:hover{

    background:#00ff9d;

    color:#000;

}

/* ========================================== */
/* INPUT */
/* ========================================== */

input,
select,
textarea{

    width:100%;

    padding:15px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:#121212;

    color:#fff;

    outline:none;

    transition:.25s;

    font-size:15px;

}

input:focus,
select:focus,
textarea:focus{

    border-color:#00ff9d;

    box-shadow:0 0 15px rgba(0,255,157,.2);

}

/* ========================================== */
/* LABEL */
/* ========================================== */

label{

    display:block;

    margin-top:20px;

    margin-bottom:10px;

    font-weight:600;

}

/* ========================================== */
/* SECTION TITLE */
/* ========================================== */

.section-title{

    margin:35px 0 20px;

}

.section-title h3{

    margin-bottom:6px;

}

.section-title p{

    color:#8b8b8b;

}

/* ========================================== */
/* FOOTER */
/* ========================================== */

footer{

    width:100%;

    text-align:center;

    padding:35px 20px;

    color:#8a8a8a;

    font-size:14px;

    border-top:1px solid rgba(255,255,255,.05);

    margin-top:60px;

   text-align:center;

    padding:50px 20px;

}

footer p:first-child{

    margin-bottom:8px;

}
/* ========================================== */
/* IMAGE */
/* ========================================== */

img{

    max-width:100%;

    display:block;

}

/* ========================================== */
/* ANIMATION */
/* ========================================== */

.fade-up{

    animation:fadeUp .5s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ===================================
   SECTION TITLE
=================================== */

section{

    width:100%;

}

section h2{

    text-align:center;

    font-family:'Orbitron',sans-serif;

    font-size:38px;

    color:#ffffff;

    margin-bottom:18px;

}

section>p{

    text-align:center;

    color:#bdbdbd;

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.8;

}

.rules{

    max-width:1200px;

    margin:90px auto;

    padding:40px;

    border-radius:25px;

}

.rules h2{

    text-align:center;

    margin-bottom:30px;

}

.contact{

    max-width:1200px;

    margin:90px auto;

    padding:40px;

    text-align:center;

}

.contact h2{

    margin-bottom:25px;

}

.contact p{

    text-align:center;

    color:#bdbdbd;

}
