@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050608;
    color: #ffffff;
    font-family: Inter, sans-serif;
    overflow-x: hidden;
}


/* ============================= */
/* AUTH SCREEN */
/* ============================= */

#auth-screen {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(90, 100, 255, 0.14),
            transparent 40%
        ),
        #050608;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

#auth-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.auth-box {
    width: min(420px, 90%);

    padding: 45px;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 20px;

    background: rgba(255,255,255,0.035);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.5),
        0 0 60px rgba(90,100,255,0.08);

    animation: loginAppear 0.8s ease;
}


@keyframes loginAppear {

    from {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.login-logo {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: white;
    color: #050608;

    border-radius: 14px;

    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;

    box-shadow:
        0 0 30px rgba(255,255,255,0.12);
}


.login-logo span {
    font-size: 17px;
}


.login-label {
    color: #6870ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.auth-box h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 36px;

    letter-spacing: -1.5px;
}


.auth-box > p,
#register-panel > p,
#login-panel > p {
    color: #777d88;

    font-size: 14px;

    margin-top: 10px;
    margin-bottom: 30px;
}


.input-group {
    margin-bottom: 18px;
}


.input-group label {
    display: block;

    margin-bottom: 8px;

    color: #aeb3bd;

    font-size: 12px;
    font-weight: 600;
}


.input-group input {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 9px;

    outline: none;

    background: rgba(255,255,255,0.035);

    color: white;

    font-family: Inter, sans-serif;
    font-size: 14px;

    transition: 0.2s;
}


.input-group input::placeholder {
    color: #50555f;
}


.input-group input:focus {
    border-color: rgba(125,140,255,0.7);

    box-shadow:
        0 0 0 3px rgba(125,140,255,0.08);
}


.login-button {
    width: 100%;

    padding: 14px;

    margin-top: 5px;

    border: none;

    border-radius: 9px;

    background: white;

    color: #050608;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}


.login-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255,255,255,0.1);
}


#register-error,
#login-error {
    min-height: 18px;

    margin-top: 15px;

    text-align: center;

    color: #ff6262;

    font-size: 12px;

    line-height: 1.5;
}


.auth-switch {
    margin-top: 20px;

    text-align: center;

    color: #666b75;

    font-size: 12px;
}


.auth-switch button {
    border: none;

    background: transparent;

    color: #7d8cff;

    cursor: pointer;

    font-family: Inter, sans-serif;

    font-size: 12px;

    font-weight: 600;
}


.auth-switch button:hover {
    color: white;
}


.login-footer {
    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.06);

    text-align: center;

    color: #444953;

    font-size: 11px;
}


.hidden-panel {
    display: none;
}


/* ============================= */
/* BACKGROUND */
/* ============================= */

.background-grid {
    position: fixed;

    inset: 0;

    z-index: -5;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}


.glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(150px);

    opacity: 0.13;

    z-index: -4;
}


.glow-one {
    background: #4169ff;

    top: -200px;
    left: -200px;
}


.glow-two {
    background: #8b5cf6;

    right: -200px;
    top: 40%;
}


/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
    width: min(1200px, 92%);

    height: 80px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.06);
}


.logo,
.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family: "Space Grotesk", sans-serif;

    font-weight: 700;

    font-size: 19px;
}


.logo span,
.footer-logo span {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    background: #ffffff;

    color: #050608;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 800;
}


.nav-links {
    display: flex;

    gap: 35px;
}


.nav-links a,
.footer-links a {
    color: #8e939e;

    text-decoration: none;

    font-size: 14px;

    transition: 0.2s;
}


.nav-links a:hover,
.footer-links a:hover {
    color: white;
}


.nav-right {
    display: flex;

    align-items: center;

    gap: 10px;
}


.discord-button {
    color: white;

    text-decoration: none;

    padding: 11px 18px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 8px;

    font-size: 14px;

    transition: 0.2s;
}


.discord-button:hover {
    background: white;

    color: black;
}


.logout-button {
    color: #aeb4c0;

    background: transparent;

    padding: 11px 14px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 8px;

    font-size: 13px;

    cursor: pointer;

    transition: 0.2s;
}


.logout-button:hover {
    color: white;

    border-color: rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.04);
}


/* ============================= */
/* HERO */
/* ============================= */

.hero {
    width: min(1000px, 92%);

    margin: auto;

    min-height: 750px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.badge {
    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.035);

    padding: 8px 14px;

    border-radius: 100px;

    font-size: 11px;

    letter-spacing: 1.5px;

    color: #aeb4c0;

    margin-bottom: 30px;
}


.status-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    background: #56f58b;

    border-radius: 50%;

    margin-right: 8px;

    box-shadow: 0 0 10px #56f58b;
}


.hero h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 9vw, 110px);

    line-height: 0.95;

    letter-spacing: -5px;

    max-width: 1000px;
}


.hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffffff,
        #7d8cff,
        #ffffff
    );

    background-size: 200%;

    -webkit-background-clip: text;

    color: transparent;

    animation: gradient 5s infinite linear;
}


@keyframes gradient {

    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }

}


.hero p {
    max-width: 620px;

    margin-top: 30px;

    color: #8d929c;

    line-height: 1.7;

    font-size: 16px;
}


.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}


.primary-button,
.secondary-button {
    border-radius: 8px;

    padding: 14px 22px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    border: none;
}


.primary-button {
    background: white;

    color: black;
}


.primary-button:hover {
    transform: translateY(-2px);
}


.secondary-button {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.1);

    color: white;
}


.hero-stats {
    display: flex;

    gap: 70px;

    margin-top: 80px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.hero-stats strong {
    font-size: 22px;
}


.hero-stats span {
    font-size: 11px;

    color: #666b75;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ============================= */
/* SECTIONS */
/* ============================= */

.section {
    width: min(1200px, 92%);

    margin: auto;

    padding: 120px 0;
}


.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;
}


.section-label {
    color: #6870ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.section h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 48px;

    letter-spacing: -2px;

    margin-top: 10px;
}


.section-heading p {
    max-width: 380px;

    color: #777c87;

    line-height: 1.6;
}


/* ============================= */
/* TOOLS */
/* ============================= */

.tools-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.tool-card {
    position: relative;

    padding: 35px;

    min-height: 300px;

    border: 1px solid rgba(255,255,255,0.07);

    background: rgba(255,255,255,0.025);

    border-radius: 15px;

    overflow: hidden;

    transition: 0.3s;
}


.tool-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,0.18);

    background: rgba(255,255,255,0.045);
}


.tool-number {
    position: absolute;

    right: 25px;

    top: 25px;

    font-size: 12px;

    color: #444953;
}


.tool-icon {
    font-size: 32px;

    margin-bottom: 30px;
}


.tool-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;
}


.tool-card p {
    color: #777d88;

    line-height: 1.6;

    max-width: 450px;

    margin-top: 12px;
}


.tool-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 30px;
}


.tool-footer span {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #666b75;
}


.tool-footer button {
    background: transparent;

    border: none;

    color: white;

    cursor: pointer;

    font-weight: 600;
}


/* ============================= */
/* UPDATES */
/* ============================= */

.updates-section {
    border-top: 1px solid rgba(255,255,255,0.06);
}


.update-list {
    border-top: 1px solid rgba(255,255,255,0.08);
}


.update {
    display: grid;

    grid-template-columns: 100px 1fr 100px;

    gap: 30px;

    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,0.06);
}


.update-version {
    font-size: 11px;

    color: #6970ff;

    font-weight: 700;
}


.update h3 {
    font-size: 16px;
}


.update p {
    color: #707580;

    font-size: 13px;

    margin-top: 6px;
}


.update-date {
    color: #555a64;

    font-size: 10px;

    text-align: right;
}


/* ============================= */
/* ABOUT */
/* ============================= */

.about-box {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.025);

    border-radius: 20px;

    padding: 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.about-content {
    max-width: 600px;
}


.about-content h2 {
    font-size: 55px;
}


.about-content h2 span {
    color: #747b88;
}


.about-content p {
    color: #777d88;

    line-height: 1.7;

    margin: 25px 0 30px;
}


.about-logo {
    position: relative;

    width: 280px;
    height: 280px;

    display: grid;

    place-items: center;
}


.big-au {
    font-family: "Space Grotesk", sans-serif;

    font-size: 100px;

    font-weight: 800;

    color: white;

    text-shadow:
        0 0 30px rgba(120,130,255,0.5);
}


.orbit {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50%;
}


.orbit-one {
    width: 260px;

    height: 100px;

    transform: rotate(35deg);
}


.orbit-two {
    width: 260px;

    height: 100px;

    transform: rotate(-35deg);
}


/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    width: min(1200px, 92%);

    margin: auto;

    padding: 40px 0;

    border-top: 1px solid rgba(255,255,255,0.07);

    display: flex;

    justify-content: space-between;

    align-items: center;
}


footer p {
    color: #555a64;

    font-size: 12px;
}


.footer-links {
    display: flex;

    gap: 20px;
}


/* ============================= */
/* TOAST */
/* ============================= */

#toast {
    position: fixed;

    bottom: 30px;

    left: 50%;

    transform: translate(-50%, 100px);

    background: white;

    color: black;

    padding: 13px 20px;

    border-radius: 8px;

    font-size: 13px;

    opacity: 0;

    transition: 0.3s;

    z-index: 100000;
}


#toast.show {
    transform: translate(-50%, 0);

    opacity: 1;
}


/* ============================= */
/* MOVING BACKGROUND BALLS */
/* ============================= */

.particles {
    position: fixed;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: -3;
}


.particle {
    position: absolute;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: rgba(125, 140, 255, 0.7);

    box-shadow:
        0 0 10px rgba(125, 140, 255, 0.7),
        0 0 25px rgba(125, 140, 255, 0.3);

    animation:
        particleFloat linear infinite,
        particlePulse ease-in-out infinite;
}


@keyframes particleFloat {

    0% {
        transform: translate3d(0, 110vh, 0);
    }

    100% {
        transform: translate3d(
            var(--drift),
            -120px,
            0
        );
    }

}


@keyframes particlePulse {

    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.9;
    }

}


/* ============================= */
/* PAGE TRANSITION */
/* ============================= */

body {
    animation: pageFadeIn 0.7s ease;
}


@keyframes pageFadeIn {

    from {
        opacity: 0;

        transform: translateY(8px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


section {
    scroll-margin-top: 80px;
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media(max-width: 700px) {

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 5px;
    }

    .discord-button {
        display: none;
    }

    .logout-button {
        padding: 9px 11px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-stats {
        gap: 25px;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 20px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .update {
        grid-template-columns: 60px 1fr;
    }

    .update-date {
        display: none;
    }

    .about-box {
        padding: 40px 25px;
    }

    .about-logo {
        display: none;
    }

    .about-content h2 {
        font-size: 40px;
    }

    footer {
        flex-direction: column;

        gap: 20px;
    }

    .auth-box {
        padding: 32px 25px;
    }

    .auth-box h1 {
        font-size: 32px;
    }

}


/* ============================= */
/* REDUCED MOTION */
/* ============================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

    }

}
/* ============================= */
/* ACCOUNT AUTH */
/* ============================= */

#auth-screen {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(90, 100, 255, 0.14),
            transparent 40%
        ),
        #050608;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

#auth-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.login-box {
    width: min(420px, 90%);

    padding: 45px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    background: rgba(255,255,255,.035);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 30px 100px rgba(0,0,0,.5),
        0 0 60px rgba(90,100,255,.08);

    animation: loginAppear .8s ease;
}

@keyframes loginAppear {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.login-logo {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: white;
    color: #050608;

    border-radius: 14px;

    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
}

.login-logo span {
    font-size: 17px;
}

.login-label {
    color: #6870ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.login-box h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 36px;

    letter-spacing: -1.5px;
}

.login-box > p {
    color: #777d88;

    font-size: 14px;

    margin-top: 10px;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    color: #aeb3bd;

    font-size: 12px;
    font-weight: 600;
}

.input-group input,
.settings-input,
.settings-row input {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 9px;

    outline: none;

    background: rgba(255,255,255,.035);

    color: white;

    font-family: Inter, sans-serif;
    font-size: 14px;

    transition: .2s;
}

.input-group input::placeholder,
.settings-input::placeholder,
.settings-row input::placeholder {
    color: #50555f;
}

.input-group input:focus,
.settings-input:focus,
.settings-row input:focus {
    border-color: rgba(125,140,255,.7);

    box-shadow:
        0 0 0 3px rgba(125,140,255,.08);
}

.login-button {
    width: 100%;

    padding: 14px;

    margin-top: 5px;

    border: none;
    border-radius: 9px;

    background: white;
    color: #050608;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.login-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255,255,255,.1);
}

#signup-error,
#login-error {
    min-height: 18px;

    margin-top: 15px;

    text-align: center;

    color: #ff6262;

    font-size: 12px;
}

.hidden-form {
    display: none;
}

.auth-switch {
    width: 100%;

    margin-top: 18px;

    background: transparent;

    border: none;

    color: #7d8cff;

    cursor: pointer;

    font-size: 12px;
}

.auth-switch:hover {
    color: white;
}

.login-footer {
    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.06);

    text-align: center;

    color: #444953;

    font-size: 11px;
}


/* ============================= */
/* NAV ACCOUNT BUTTON */
/* ============================= */

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-button {
    padding: 11px 16px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 8px;

    background: rgba(255,255,255,.035);

    color: white;

    cursor: pointer;

    font-size: 13px;

    transition: .2s;
}

.account-button:hover {
    background: white;
    color: black;
}


/* ============================= */
/* ACCOUNT OVERLAY */
/* ============================= */

#account-overlay {
    position: fixed;

    inset: 0;

    z-index: 50000;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 25px;

    background: rgba(0,0,0,.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: .35s ease;
}

#account-overlay.show {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.account-panel {
    position: relative;

    width: min(650px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 40px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 30px 100px rgba(0,0,0,.6);

    transform: translateY(20px) scale(.98);

    transition: .35s ease;
}

#account-overlay.show .account-panel {
    transform: translateY(0) scale(1);
}

.close-account {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 35px;
    height: 35px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 8px;

    background: rgba(255,255,255,.04);

    color: white;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;
}

.close-account:hover {
    background: white;
    color: black;
}


/* ============================= */
/* ACCOUNT HEADER */
/* ============================= */

.account-header {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 35px;
}

.account-avatar {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: white;

    color: black;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    font-weight: 800;

    box-shadow:
        0 0 35px rgba(125,140,255,.18);
}

.account-header h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 32px;

    margin-top: 4px;
}

.account-header p {
    color: #777d88;

    font-size: 13px;

    margin-top: 5px;
}


/* ============================= */
/* ACCOUNT CARDS */
/* ============================= */

.account-card {
    padding: 20px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 12px;

    background: rgba(255,255,255,.025);

    margin-bottom: 25px;
}

.account-card-label {
    display: block;

    color: #666b75;

    font-size: 10px;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.account-card strong {
    font-size: 18px;
}


/* ============================= */
/* SETTINGS GROUP */
/* ============================= */

.settings-group {
    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,.06);
}

.settings-group h3,
.settings-danger h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 18px;
}

.settings-group p,
.settings-danger p {
    color: #6f747e;

    font-size: 12px;

    line-height: 1.5;

    margin-top: 6px;

    margin-bottom: 16px;
}

.settings-row {
    display: flex;

    gap: 10px;
}

.settings-row input {
    flex: 1;
}

.settings-button {
    padding: 12px 18px;

    border: none;

    border-radius: 8px;

    background: white;

    color: black;

    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.settings-button:hover {
    transform: translateY(-2px);
}

.settings-button.full {
    width: 100%;

    margin-top: 10px;
}

.settings-input {
    display: block;

    margin-bottom: 10px;
}


/* ============================= */
/* DANGER AREA */
/* ============================= */

.settings-danger {
    padding: 25px;

    margin-top: 10px;

    border: 1px solid rgba(255,80,80,.12);

    border-radius: 12px;

    background: rgba(255,50,50,.025);
}

.danger-buttons {
    display: flex;

    gap: 10px;
}

.logout-button,
.delete-button {
    flex: 1;

    padding: 12px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 700;

    transition: .2s;
}

.logout-button {
    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.04);

    color: white;
}

.delete-button {
    border: 1px solid rgba(255,70,70,.25);

    background: rgba(255,50,50,.08);

    color: #ff6969;
}

.logout-button:hover,
.delete-button:hover {
    transform: translateY(-2px);
}


/* ============================= */
/* MOBILE ACCOUNT SETTINGS */
/* ============================= */

@media(max-width: 700px) {

    .nav-right {
        gap: 5px;
    }

    .account-button {
        padding: 9px 11px;
    }

    .discord-button {
        display: none;
    }

    .login-box {
        padding: 32px 25px;
    }

    .login-box h1 {
        font-size: 30px;
    }

    .account-panel {
        padding: 30px 22px;
    }

    .account-header {
        padding-right: 25px;
    }

    .account-header h2 {
        font-size: 25px;
    }

    .settings-row {
        flex-direction: column;
    }

    .settings-button {
        width: 100%;
    }

    .danger-buttons {
        flex-direction: column;
    }

}
