/* font import */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* general */

:root{

    --green:#00e676;
    --green2:#00d96c;

    --background:#050807;

    --card:#11171a;

    --text:#ffffff;

    --gray:#a7b0ad;

}

body {
    margin:0;
    background: #050807;
    overflow-x: hidden;
    color: white;   
    font-family: 'Manrope', sans-serif;
}

a{
    text-decoration: none;
    color: white;
}


::-webkit-scrollbar {
    width: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background: rgb(10, 10, 10);
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgb(3, 231, 117);
    border-radius: 10px;
  }
  
/* backgrounds */
.bg{

    position:fixed;

    inset:0;

    background:url(https://i.postimg.cc/tghxTM8S/dreambg.png);

    background-size:cover;

    background-position:center;

    filter:
    brightness(.35)
    saturate(1.1);

    z-index:-2;

}

.bg::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top,#00e67618 0%,transparent 60%),

    linear-gradient(

        180deg,

        rgba(5,8,7,.15),

        rgba(5,8,7,.96)

    );

}

/* header */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 70px;

    box-sizing:border-box;

    background:rgba(6,10,8,.72);

    backdrop-filter:blur(16px);

    box-shadow:
0 10px 40px rgba(0,0,0,.25);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:9999;

}

.header .logo{

    margin:0;

}
.header .logo h1{

    font-size:30px;

    font-weight:800;

    letter-spacing:1px;

}
.header .logo .online {
    display: flex;
    margin-left: 25px;
    align-items: center;
    
}
.header .logo .online .dot {
    width: 7px;
    height: 7px;
    background-color: rgb(3, 231, 117);
    border-radius: 20px;
    margin-right: 15px;
    animation: dot 2s infinite;
}

@keyframes dot {
    0% {
        box-shadow: 0px 0px 0px 0px rgb(3, 231, 117);
    }

    50% {
        box-shadow: 0px 0px 1px 3px rgb(0, 114, 57);

    }

    100% {
        box-shadow: 0px 0px 0px 0px rgb(3, 231, 117);
    }
}

.hero-status{

    display:flex;

    align-items:center;

    gap:12px;

    width:max-content;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(0,230,118,.08);

    border:1px solid rgba(0,230,118,.12);

    margin-bottom:35px;

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--green);

    box-shadow:0 0 18px var(--green);

}

.hero-status span{

    color:#d2d7d5;

    font-size:14px;

    font-weight:600;

}

.hero-left h1{

    font-size:92px;

    margin:0;

    line-height:82px;

    font-weight:800;

}

.hero-left h1 span{

    color:var(--green);

}

.hero-left h2{

    margin-top:22px;

    font-size:34px;

    font-weight:700;

    color:white;

}

.hero-left p{

    margin-top:24px;

    color:#99a4a1;

    line-height:34px;

    font-size:18px;

    max-width:540px;

}

.hero-right{

    position:relative;

    width:520px;

    height:700px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-circle{

    position:absolute;

    width:480px;

    height:480px;

    border-radius:50%;

    background:radial-gradient(

        rgba(0,230,118,.28),

        transparent 70%

    );

    filter:blur(40px);

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}


.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    font-size:28px;

    color:rgba(255,255,255,.35);

    animation:scrollMove 2s infinite;

}

@keyframes scrollMove{

    50%{

        transform:translate(-50%,10px);

    }

}

.features{

    min-height:900px;

    background:#090d0c;

    border-top:1px solid rgba(255,255,255,.04);

}


.online .text {
    display: flex;
    flex-direction: column;
}

.online .text h2{

    margin:0;

    font-size:20px;

    font-weight:700;

}

.online .text h3{

    margin-top:4px;

    color:var(--green);

    font-weight:500;

    letter-spacing:1px;

}


.header .nav{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    gap:38px;

}
.header .nav h2{

    margin:0 18px;

    font-size:15px;

    font-weight:600;

    color:#a4acab;

    transition:.25s;

}
.header .nav h2:hover{

    color:white;

}
.header .nav .active {
    color: white;
    transition: 200ms;
    font-weight: 400;
}

.header .nav .active:hover {
    color: white;
    cursor: pointer;
    transition: 200ms;
}

.header .nav button{

    height:46px;

    padding:0 28px;

    border-radius:14px;

    border:0;

    color:white;

    font-size:14px;

    font-weight:700;

    background:linear-gradient(
    135deg,
    var(--green),
    var(--green2)
    );

    box-shadow:
    0 0 30px rgba(0,230,118,.15);

    transition:.25s;

}

.header .nav a{

    position:relative;
    white-space: nowrap;

}

.header .nav button:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 35px rgba(0,230,118,.28);

}

.header .nav a.active h2{

    color:var(--green);

}

.header .nav a.active::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-22px;

    transform:translateX(-50%);

    width:38px;

    height:3px;

    border-radius:50px;

    background:var(--green);

}

.header .nav a:last-child{

    margin-left:35px;

}

.primary{

    height:58px;

    padding:0 34px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#00e676,#00c853);

    color:white;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
    0 10px 30px rgba(0,230,118,.22);

    transition:.25s;

}

.primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 40px rgba(0,230,118,.35);

}

/* main */

.main{

    width:1400px;

    max-width:90%;

    margin:auto;

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:20px;

}

.main .left h1 {
    font-weight: 700;
    font-size: 80px;
    letter-spacing: 5px;
    margin:0;
    text-align: center;
}

.main .left h2 {
    margin:0;
    color:rgba(0, 255, 128, 0.815);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

/* section */

.section {
    display: flex;
    flex-direction: column;
    margin-top: 150px;
}

.section .title {
    display: flex;
    margin-left: 100px;
    align-items: center;
}

.section .title h1 {
    font-weight: 500;
    text-transform: uppercase;
    
}
.section .title .line {
    height: 10px;
    width: 200px;
    background-color: rgb(3, 231, 117);
    margin-left: 25px;
    border-radius: 10px;
}

.section .content {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.section .content .tryb{
    background: linear-gradient(rgba(3, 231, 117, 0.278), rgba(10, 10, 10, 0.746));
    width: 88%;
    height: 350px;
    border-radius: 10px;
    margin-left: 12.5px;
    margin-right: 12.5px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section .content .tryb a button{
    display: flex;
    align-items: center;
    padding: 0px 35px;
    height: 40px;
    border: 0;
    border-radius: 20px;
    background-color: rgba(0, 255, 128, 0.815);
    color: white;
    font-family: poppins;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.section .content .tryb h1 {
    font-weight: 500;
    letter-spacing: 5px;
    margin:0;
}

.section .content .tryb h2 {
    color: rgb(182, 182, 182);
    font-weight: 300;
    font-size: 16px;
    text-align: center;
}

.section .content .title {
    display: flex;
    align-content: center;
    margin-left: -30px;;
}

.section .content .title img {
    width: 40px;
    margin-right: 25px;;
}

.section .adm {
    background: linear-gradient(rgba(3, 231, 117, 0.278), rgba(10, 10, 10, 0.746));
    width: 43%;
    height: 250px;
    border-radius: 10px;
    margin-left: 12.5px;
    margin-right: 12.5px;
    margin-top: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

}

.section .adm img {
    width: 120px;
}

.section .adm .left {
    margin-right: 20px;
    margin-left: 20px;
}

.section .adm .right {
    margin-right: 20px;
    margin-left: 20px;
}

.section .adm .right h1 {
    font-weight: 600;
    letter-spacing: 2px;
    margin:0;
}

.section .adm .right h2 {
    margin:0;
    font-weight: 400;
    color: rgb(3, 231, 117);
    letter-spacing: 5px;
    font-size: 18px;
}

/* footer */

.footer{
    margin-top: 150px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.446);
    align-items: center;
    display: flex;
    justify-content: center;
    
}
.footer img {
    width: 200px;
    height:200px;
}

.creator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.505);
    height: 100px;
}

.creator h2 {
    margin:0;
    font-weight: 300;
    color: rgb(213, 213, 213);
    font-size: 20px;
    line-height: 20px;;
}

b{
    color: white;
}

.media {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
}

.media img{
    width: 50px;
    margin-left: 5px;

}

.media img:hover{
    transition: 200ms;
    filter: brightness(50%);
    cursor: pointer;
}

.account-menu {
    position: relative;
    display: inline-block;
}

.account-btn {

    background: linear-gradient(
        135deg,
        rgba(0,255,128,0.9),
        rgba(0,180,100,0.9)
    );

    border: none;

    padding: 10px 22px;

    border-radius: 14px;

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow:
        0 0 15px rgba(0,255,128,0.25);

}

.account-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(0,255,128,0.4);

}

.dropdown {

    position: absolute;

    top: calc(100% + 12px);

    right: 0;

    min-width: 220px;

    padding: 10px;

    border-radius: 18px;

    background:
        rgba(10,10,10,0.95);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(0,255,128,0.15);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.4),
        0 0 25px rgba(0,255,128,0.08);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-10px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9999;

}

.dropdown.active {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}

.dropdown a {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 14px;

    border-radius: 12px;

    text-decoration: none;

    color: white;

    transition: all .2s ease;

}

.dropdown a:hover {

    background:
        rgba(0,255,128,0.12);

    transform:
        translateX(4px);

    box-shadow:
        inset 0 0 0 1px rgba(0,255,128,0.15);

}

.footer-left{

    position:fixed;

    left:40px;

    bottom:30px;

    color:#6e7573;

    font-size:14px;

}

.footer-left span{

    display:block;

    margin-top:8px;

    font-size:13px;

}

.footer-right{

    position:fixed;

    right:40px;

    bottom:30px;

    text-align:right;

}

.footer-right p{

    color:#8d9492;

    margin:0;

}

.footer-right a{

    color:var(--green);

    text-decoration:none;

    font-weight:600;

}


.login-btn{

    background:transparent;

    border:1px solid rgba(255,255,255,.08);

    color:var(--green);

    border-radius:12px;

    height:46px;

    padding:0 22px;

    transition:.25s;

}

.login-btn:hover{

    background:rgba(255,255,255,.04);

    border-color:rgba(0,230,118,.25);

}


.login-box hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.admin-container {
    display: flex;
    height: 100vh;
}

/* sidebar */
.sidebar {
    width: 220px;
    background: #0a0a0a;
    padding: 20px;
    border-right: 1px solid rgba(0,255,128,0.2);
}

.sidebar h2 {
    color: white;
    margin-bottom: 20px;
}

.sidebar a {
    display: block;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 5px;
}

.sidebar a:hover {
    background: rgba(0,255,128,0.2);
}

/* content */
.admin-content {
    flex: 1;
    padding: 30px;
    color: white;
}

#toastContainer {

    position: fixed;

    bottom: 20px;

    right: 20px;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.toast {

    width: 380px;

    max-width: 380px;

    padding: 14px 18px;

    border-radius: 14px;

    color: white;

    font-weight: 600;

    line-height: 1.4;

    white-space: normal;

    word-wrap: break-word;

    backdrop-filter: blur(10px);

    animation:
        toastIn .25s ease,
        toastOut .25s ease 8s forwards;
}

.toast.success {

    background:
        rgba(0,255,128,0.15);

    border:
        1px solid rgba(0,255,128,0.4);
}

.toast.error {

    background:
        rgba(255,0,0,0.15);

    border:
        1px solid rgba(255,0,0,0.4);
}

@keyframes toastIn {

    from {

        opacity: 0;

        transform:
            translateX(30px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}

@keyframes toastOut {

    to {

        opacity: 0;

        transform:
            translateX(30px);

    }

}