:root {
    --ares-primary: #7367f0;
    --ares-secondary: #28c76f;
    --ares-accent: #ff9f43;
    --ares-danger: #ea5455;
    --ares-dark: #222f3e;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

html,
body {
    height: 100%;
}

body {
    background: linear-gradient(135deg, #7367f0 0%, #9e6fff 50%, #ff9f43 100%) fixed;
    color: #fff;
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO CARD */
.welcome-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    padding: 3rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
}

.welcome-card h1 {
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn-primary {
    background: var(--ares-accent);
    border: none;
    color: var(--ares-dark);
    font-weight: 600;
    padding-inline: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* MODALS */
.modal-content {
    background: #fff;
    border: none;
    border-radius: 1rem;
    color: var(--ares-dark);
}

.modal-header {
    border: none;
}

.modal-title {
    font-weight: 600;
}

.form-control {
    background: rgba(34, 47, 62, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
}

.form-control:focus {
    border-color: var(--ares-primary);
    box-shadow: 0 0 0 0.25rem rgba(115, 103, 240, 0.25);
}

body.modal-open {
    padding-right: 0 !important;
}

.modal {
    overflow-y: auto;
}