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

html {
    scroll-behavior: smooth;
}

body {
    background: #0e0e0e;
    color: #e0e0e0;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0e0e0e; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }


/* nav */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    background: rgba(14, 14, 14, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .04);
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .85rem;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 2px 10px rgba(0, 0, 0, .25);
    justify-self: end;
}

.nav-logo img {
    width: 28px;
    height: 28px;
}

.nav-logo span {
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #fff 0%, #666 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s linear infinite;
    letter-spacing: .5px;
}

@keyframes gradientShift {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #999;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 400;
    transition: color .2s;
    letter-spacing: .3px;
}

.nav-links a:hover {
    color: #fff;
}


/* discord button */

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .85rem;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 2px 10px rgba(0, 0, 0, .25);
}

.discord-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 4px 20px rgba(255, 255, 255, .06);
}

.discord-btn svg {
    width: 16px;
    height: 16px;
}

/* Account button in nav */

.account-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .85rem;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 2px 10px rgba(0, 0, 0, .25);
}

.account-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 4px 20px rgba(255, 255, 255, .06);
}

.account-btn i {
    font-size: .9rem;
}

.login-btn i {
    font-size: .9rem;
}


/* hero */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(150, 150, 180, .06) 0%, transparent 60%);
    pointer-events: none;
    animation: drift 12s ease-in-out infinite alternate;
}

@keyframes pulse {
    0%   { opacity: .6; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(40px, 20px); }
}

.hero-text {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-pill {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    opacity: .9;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, .15))
            drop-shadow(0 0 40px rgba(255, 255, 255, .05));
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(255, 255, 255, .1);
}

.hero h1 span {
    color: #777;
}

.hero p {
    font-size: 1.05rem;
    color: #666;
    max-width: 420px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* menu showcase */

.menu-showcase {
    position: relative;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, .5),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform .6s cubic-bezier(.23, 1, .32, 1), box-shadow .6s ease;
}

.menu-showcase:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, .4),
        0 0 60px rgba(255, 255, 255, .03),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.menu-showcase img {
    width: 100%;
    border-radius: 10px;
    display: block;
}


/* sections */

section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(255, 255, 255, .08);
}

.section-header p {
    color: #555;
    font-size: .9rem;
    font-weight: 300;
}


/* versions */

.versions {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.versions::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 160, 200, .06) 0%, transparent 60%);
    pointer-events: none;
}

.versions::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 200, 220, .05) 0%, transparent 60%);
    pointer-events: none;
}

.version-tabs {
    display: flex;
    gap: 4px;
    max-width: 700px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 4px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.version-tab {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #555;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.version-tab[data-active="true"] {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.version-tab:not([data-active="true"]):not(.locked):hover {
    color: #999;
}

.version-tab.locked {
    cursor: not-allowed;
    color: #333;
}

.version-tab.locked svg {
    opacity: .5;
}

.version-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.version-panel {
    display: none;
}

.version-panel[data-active="true"] {
    display: block;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.version-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.version-tag {
    font-size: .7rem;
    font-weight: 500;
    color: #888;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.version-desc {
    color: #666;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.version-list {
    list-style: none;
}

.version-list li {
    padding: 10px 0;
    font-size: .88rem;
    color: #999;
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    padding-left: 16px;
    position: relative;
}

.version-list li:last-child {
    border-bottom: none;
}

.version-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #444;
}


/* pricing */

.pricing {
    background: #0e0e0e;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 180, 210, .05) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3), 0 0 20px rgba(255, 255, 255, .02), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #bbb;
    margin-bottom: 6px;
}

.price-card .price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 16px 0;
}

.price-card .price span {
    font-size: .9rem;
    font-weight: 300;
    color: #666;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.price-card ul li {
    padding: 6px 0;
    font-size: .85rem;
    color: #666;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    font-weight: 300;
}

.price-card ul li:last-child {
    border: none;
}


/* media */

.media {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.media::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(170, 170, 200, .05) 0%, transparent 60%);
    pointer-events: none;
}

.carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .06);
    padding: 6px;
}

.carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.23, 1, .32, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide .media-placeholder,
.carousel-slide .media-item,
.carousel-slide img,
.carousel-slide video {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.media-placeholder {
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, .02);
    border: 1px dashed rgba(255, 255, 255, .06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: .8rem;
    font-weight: 300;
}

.media-item {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(10, 10, 10, .7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.carousel-btn:hover {
    background: rgba(20, 20, 20, .9);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.carousel-btn svg {
    width: 16px;
    height: 16px;
}

.carousel-prev {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 8px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 0 8px rgba(255, 255, 255, .15);
}


/* footer */

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .01);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

footer span {
    color: #444;
    font-size: .8rem;
    font-weight: 300;
}

footer a {
    color: #555;
    text-decoration: none;
    font-size: .8rem;
    transition: color .2s;
    font-weight: 300;
}

footer a:hover {
    color: #fff;
}


/* scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.23, 1, .32, 1),
                transform .7s cubic-bezier(.23, 1, .32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }


/* modal */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: rgba(20, 20, 20, .8);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 32px 28px;
    width: 100%;
    max-width: 380px;
    position: relative;
    transform: scale(.9) translateY(20px);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5),
                inset 0 1px 0 rgba(255, 255, 255, .06);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15);
    color: #fff;
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, .15));
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -.3px;
}

.modal-header p {
    color: #555;
    font-size: .85rem;
    font-weight: 300;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: .75rem;
    font-weight: 500;
    color: #888;
    letter-spacing: .3px;
}

.form-group input {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: .85rem;
    font-family: 'Outfit', sans-serif;
    transition: all .25s;
    outline: none;
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .03);
}

.forgot-password {
    font-size: .8rem;
    color: #555;
    text-decoration: none;
    transition: color .25s;
    align-self: flex-end;
}

.forgot-password:hover {
    color: #888;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 12px 20px;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all .25s;
    margin-top: 4px;
}

.modal-submit:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.modal-submit:active {
    transform: translateY(0);
}

.modal-submit svg {
    width: 16px;
    height: 16px;
}

.modal-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.modal-footer span {
    color: #444;
    font-size: .8rem;
    font-weight: 300;
}

.modal-footer a {
    color: #888;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 500;
    margin-left: 6px;
    transition: color .25s;
}

.modal-footer a:hover {
    color: #fff;
}

/* Error Modal */

.error-modal-small {
    max-width: 340px;
    padding: 28px 24px;
}

.error-modal-small .modal-header i.error-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 12px;
    display: block;
}

.error-modal-small .modal-header h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.error-modal-small .modal-header p {
    font-size: .85rem;
    color: #666;
    line-height: 1.5;
}

.error-modal-small .modal-submit {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}


/* responsive */

@media (max-width: 768px) {
    .nav { padding: 14px 20px; min-height: 64px; }
    .nav-links { gap: 12px; font-size: .8rem; }
    .login-btn { padding: 6px 14px; font-size: .8rem; }
    .hero { padding: 100px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    section { padding: 60px 20px; }
    .menu-showcase img { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
    
    .modal { padding: 18px 16px; max-width: calc(100% - 40px); }
    .modal-header h2 { font-size: 1.2rem; }
    .modal-icon { width: 36px; height: 36px; }
}

@media (max-width: 600px) {
    .modal { padding: 16px 14px; max-width: calc(100% - 32px); }
    .modal-header { margin-bottom: 20px; }
    .modal-header h2 { font-size: 1.15rem; }
    .modal-header p { font-size: .8rem; }
    .modal-icon { width: 34px; height: 34px; }
    .form-group input { padding: 11px 13px; font-size: .8rem; }
    .modal-submit { padding: 11px 18px; font-size: .85rem; }
    .modal-close { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
    .nav-links a:not(.discord-btn) { display: none; }
    .login-btn { padding: 5px 10px; font-size: .7rem; }
    .login-btn i { font-size: .75rem; }
    .hero h1 { font-size: 1.6rem; }
    
    .modal { padding: 16px 12px; max-width: calc(100% - 24px); }
    .modal-header { margin-bottom: 20px; }
    .modal-header h2 { font-size: 1.1rem; margin-bottom: 4px; }
    .modal-header p { font-size: .75rem; }
    .modal-icon { width: 32px; height: 32px; margin-bottom: 10px; }
    .form-group { gap: 6px; }
    .form-group label { font-size: .7rem; }
    .form-group input { padding: 10px 12px; font-size: .8rem; border-radius: 8px; }
    .modal-submit { padding: 10px 16px; font-size: .85rem; margin-top: 4px; }
    .modal-submit svg { width: 16px; height: 16px; }
    .modal-close { width: 26px; height: 26px; top: 10px; right: 10px; }
    .modal-close svg { width: 14px; height: 14px; }
    .forgot-password { font-size: .7rem; }
    .modal-footer { margin-top: 20px; padding-top: 16px; }
    .modal-footer span, .modal-footer a { font-size: .75rem; }
}
