@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;

}
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header {
    padding: 15px 40px;
}

.logo {
    height: 80px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-custom {
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
}

.header-mail {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.header-mail:hover {
    opacity: 1;
    color: #FFCF27;
}
.header-right img {
    height: 25px;
    margin: 0 5px;
    filter: brightness(0) invert(1);
}
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

.main p {
    color: #FFCF27;
    font-size: 18px;
    font-weight: 400;
}

.box {
    margin-top: 30px;
    padding: 35px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}


.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
}


.btn-main img {
    width: 28px;
    border-radius: 5px;
}

.btn-main:hover {
    background: #EFCA4A;
    transform: translateY(-3px);
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
    color: #000;
}

.footer {
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #fff;
}


@media (max-width: 992px) {

    .logo {
        height: 60px;
    }

    .main h1 {
        font-size: 32px;
    }

    .main p {
        font-size: 16px;
    }

    .box {
        padding: 25px;
    }

    .btn-main {
        font-size: 15px;
        padding: 10px 14px;
    }

    .header {
        padding: 10px 20px;
    }

}
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo {
        height: 50px;
    }

    .main h1 {
        font-size: 26px;
    }

    .main p {
        font-size: 14px;
    }

    .box {
        padding: 20px;
        width: 100%;
    }

    .btn-main {
        width: 100%;
        font-size: 14px;
        padding: 12px;
    }

}
@media (max-width: 480px) {

    .main h1 {
        font-size: 22px;
    }

    .main p {
        font-size: 13px;
    }

    .logo {
        height: 80px;
    }

    .btn-main img {
        width: 22px;
        height: 22px;
    }

    .footer {
        font-size: 12px;
        padding: 10px;
    }

}