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

body {
    background-color: #06040a;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(147, 51, 234, 0.05) 70%);
}

.orb-2 {
    bottom: -10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.05) 70%);
    animation-delay: -4s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.08); }
}

.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 10%;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #c084fc;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary, .btn-secondary, .btn-claim {
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c084fc 0%, #9333ea 100%);
    box-shadow: 0 6px 28px rgba(168, 85, 247, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(0);
}

.hero {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px 60px 20px;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.8px;
    color: #ffffff;
    max-width: 850px;
}

.italic-accent {
    font-family: 'Syne', sans-serif;
    font-style: italic;
    background: linear-gradient(135deg, #e879f9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 24px 0 36px 0;
    line-height: 1.6;
}

.claim-form {
    display: flex;
    background: rgba(18, 11, 26, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 6px;
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.claim-form:focus-within {
    border-color: rgba(168, 85, 247, 0.6);
}

.input-group {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 14px;
}

.prefix {
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    width: 100%;
    padding: 8px 6px;
}

.btn-claim {
    background: #a855f7;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.btn-claim:hover {
    background: #9333ea;
}

.site-stats {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    padding: 12px 18px;
    color: #cbd5e1;
    background: rgba(18, 11, 26, .45);
    border: 1px solid rgba(168, 85, 247, .16);
    border-radius: 14px;
    backdrop-filter: blur(14px);
}

.site-stat { display: flex; align-items: center; gap: 10px; text-align: left; }
.site-stat-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; font-size: .75rem; }
.site-stat-icon.online { color: #86efac; background: rgba(34, 197, 94, .14); }
.site-stat-icon.registered { color: #d8b4fe; background: rgba(168, 85, 247, .14); }
.site-stat span:last-child { display: grid; gap: 1px; }
.site-stat strong { color: #fff; font: 700 .92rem 'JetBrains Mono', monospace; }
.site-stat small { color: #94a3b8; font-size: .68rem; }
.site-stat-divider { width: 1px; height: 28px; background: rgba(255, 255, 255, .12); }

.alpha-label {
    position: fixed;
    right: 18px;
    bottom: 14px;
    z-index: 10;
    color: rgba(226, 232, 240, .42);
    font: 500 .68rem 'JetBrains Mono', monospace;
    letter-spacing: .04em;
    pointer-events: none;
}

@media (max-width: 640px) {
    .hero-title { font-size: 2.8rem; }
    .navbar { padding: 20px; }
    .site-stats { gap: 14px; padding: 10px 12px; }
    .site-stat { gap: 7px; }
    .site-stat-icon { width: 27px; height: 27px; }
    .alpha-label { right: 12px; bottom: 10px; }
}


.auth-container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: rgba(18, 11, 26, 0.65);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.auth-sub {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 28px;
}

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

.auth-footer {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

.auth-footer a {
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

a.btn-discord, .btn-discord {
    background: rgba(88, 101, 242, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(168, 85, 247, 0.3) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15) !important;
    cursor: pointer !important;
}

a.btn-discord:hover, .btn-discord:hover {
    background: rgba(168, 85, 247, 0.25) !important;
    border-color: rgba(192, 132, 252, 0.6) !important;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4) !important;
    transform: translateY(-2px) !important;
}

a.btn-discord:active, .btn-discord:active {
    transform: translateY(0) !important;
}

a.btn-discord i, .btn-discord i {
    font-size: 1.25rem !important;
    color: #a855f7 !important;
}
.provider-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.provider-icon {
    font-size: 1.8rem;
    color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-info .provider-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-info .provider-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.provider-info .provider-user {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 2px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 24px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #94a3b8;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #a855f7;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 4px 14px !important;
    width: 100% !important;
    transition: all 0.25s ease !important;
}

.input-wrapper:focus-within {
    border-color: rgba(168, 85, 247, 0.6) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.input-prefix {
    color: #64748b !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    user-select: none !important;
}

.input-wrapper input {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    padding: 12px 8px !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
}

.input-wrapper input::placeholder {
    color: #475569 !important;
}