/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0f1a, #1b1b2f);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* GLASS CARD */
.card {
    width: 420px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeIn 1s ease;
}

.card h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 30px;
}

/* INPUT */
.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    background: rgba(255,255,255,0.12);
    transform: scale(1.02);
}

/* BUTTON */
.btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #5f6fff, #8a63ff);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(95,111,255,0.4);
}

/* SOCIAL BUTTON */
.social-btn {
    margin-top: 10px;
    background: rgba(255,255,255,0.08);
}

.social-btn:hover {
    background: rgba(255,255,255,0.12);
}

/* LINK */
.link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

.link a {
    color: #7a8cff;
    text-decoration: none;
}

/* DOWNLOAD PAGE */
.download-container {
    width: 700px;
    text-align: center;
    animation: fadeIn 1s ease;
}

.download-box {
    margin-top: 40px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
}

/* CAPTCHA MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 400px;
    padding: 30px;
    border-radius: 20px;
    background: #111;
    animation: popIn 0.4s ease;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
