@font-face {
    font-family: 'namupro';
    src: url("fonts/namu-pro-webfont.woff2") format('woff2');
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'namupro', sans-serif;
    background: #000;
    overflow-x: hidden;
}

/* ================= GLOBAL LINK FIX ================= */

a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: #d93030;
}

/* Bootstrap hard override */

.btn-link,
.btn-primary,
.btn-outline-primary,
a.btn {
    color: #d93030 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

a:focus,
a:active {
    color: #d93030 !important;
}

/* ================= NAVBAR ================= */

.containertop {
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(217, 48, 48, 0.4);

    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 44px;
}

.logo-text-nav {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-link {
    color: rgba(255,255,255,0.7) !important;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: #d93030 !important;
}

/* ================= MAIN BACKGROUND ================= */

.intro {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    position: relative;

    padding-top: 80px;

    background:
        linear-gradient(rgba(20, 20, 20, 0.2), rgba(0, 0, 0, 0.3)), 
        url('../img/background.png') center/cover no-repeat;
}

.intro::before {
    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle,
        rgba(0,0,0,0.15) 10%,
        rgba(0,0,0,0.92) 100%
    );

    z-index: 1;
}

/* ================= CENTER SYSTEM ================= */

.center-container,
.auth-container {
    flex: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;
    z-index: 2;

    padding: 40px 20px;
}

/* ================= TITLE ================= */

.main-title {
    font-size: 110px;
    font-weight: 900;

    letter-spacing: 10px;

    color: #fff;
    text-transform: uppercase;

    margin: 0;

    text-shadow:
        0 0 20px rgba(217, 48, 48, 0.3),
        0 10px 50px rgba(0,0,0,0.8);
}

.auth-title {
    font-size: 80px;
}

/* ================= GAME DESCRIPTION ================= */

.game-subtitle {
    max-width: 760px;

    margin: 20px auto 35px auto;
    padding: 0 20px;

    color: rgba(255,255,255,0.88);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.5px;

    text-align: center;

    text-shadow:
        0 0 12px rgba(255,255,255,0.05),
        0 0 25px rgba(217,48,48,0.08);
}

/* ================= BUTTON ================= */

.btn-main-action {
    margin-top: 10px;

    padding: 18px 65px;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;

    background: rgba(0,0,0,0.35);

    border: 2px solid #d93030;

    color: #d93030;

    cursor: pointer;

    transition: 0.25s ease;

    backdrop-filter: blur(10px);
}

.btn-main-action:hover {
    transform: translateY(-5px) scale(1.03);

    background: #d93030;
    color: #fff;

    box-shadow: 0 0 25px rgba(217,48,48,0.7);
}

/* ================= USER BUTTON ================= */

.user-btn {
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.user-btn:hover {
    background: #d93030;
    border-color: #d93030;
}

/* ================= DROPDOWN ================= */

.user-dropdown {
    background: rgba(18,18,18,0.95);
    border: 1px solid rgba(217,48,48,0.3);
}

.user-logout {
    color: rgba(255,255,255,0.75);
}

.user-logout:hover {
    background: rgba(217,48,48,0.12);
    color: #d93030;
}

/* ================= INPUT ================= */

.form-control {
    background: #111;
    border: 1px solid #333;

    color: #fff;

    text-align: center;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

.form-control:focus {
    background: #111;
    color: #fff;

    border-color: #d93030;

    box-shadow: 0 0 10px rgba(217,48,48,0.4);
}

/* ================= AUTH BOX ================= */

.auth-box {
    width: 100%;
    max-width: 420px;
}

/* ================= FORGOT PASSWORD ================= */

.forgot-wrap {
    margin-top: 14px;

    display: flex;
    justify-content: center;
}

.forgot-password-link {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 14px;

    color: rgba(255,255,255,0.6) !important;

    text-decoration: none !important;

    position: relative;

    transition: 0.25s ease;
}

.forgot-password-link:hover {
    color: #d93030 !important;
}

/* icon */

.forgot-icon {
    width: 20px;
    height: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.35);

    font-size: 12px;
    font-weight: 700;

    color: rgba(255,255,255,0.8);

    transition: 0.25s ease;
}

.forgot-password-link:hover .forgot-icon {
    border-color: #d93030;
    color: #d93030;
}

/* underline */

.forgot-password-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0%;
    height: 1px;

    background: #d93030;

    transition: 0.25s ease;
}

.forgot-password-link:hover::after {
    width: 100%;
}

/* ================= FOOTER ================= */

.footer-premium {
    width: 100%;

    padding: 14px 0;

    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(12px);

    border-top: 1px solid rgba(217,48,48,0.5);

    text-align: center;

    margin-top: auto;

    z-index: 10;
}

.footer-links a {
    margin: 0 12px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    transition: 0.25s;
}

.footer-links a:hover {
    color: #d93030;
}

.footer-social {
    margin-top: 6px;
}

.social {
    width: 30px;

    margin: 0 8px;

    transition: 0.25s ease;
}

.social:hover {
    transform: translateY(-6px) scale(1.2);
}

.copyright {
    color: rgba(255,255,255,0.7);

    font-size: 13px;

    margin-top: 8px;

    letter-spacing: 1px;
}

/* ================= MODALS ================= */

.modaldark {
    background: rgba(18,18,18,0.95);

    border: 1px solid rgba(217,48,48,0.25);

    color: #fff;
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .main-title {
        font-size: 55px;
        letter-spacing: 4px;
    }

    .auth-title {
        font-size: 48px;
    }

    .game-subtitle {
        font-size: 15px;
        line-height: 1.6;

        margin-top: 14px;
        margin-bottom: 28px;
    }

    .btn-main-action {
        padding: 14px 30px;
        font-size: 14px;
    }

    .navbar-brand img {
        height: 36px;
    }

    .logo-text-nav {
        font-size: 18px;
    }
}