/* ============================================================
   STYLE EXPEDITION CANADA
   Couleurs exactes de la capture d'écran
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

:root {
    --bg-main: #0a1a0e;
    --bg-card: #0f2a18;
    --bg-input: #1a3a1e;
    --border-color: #2d4a2a;
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dark: #b8922f;
    --text-white: #e8e0d0;
    --text-grey: #8a8a7a;
    --text-dark: #5a5a4a;
    --red: #8b2f2f;
    --red-light: #b84a4a;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

html, body {
    background: var(--bg-main);
    color: var(--text-white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ---- Canvas feuilles ---- */
#leaf-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================================
   LAYOUT AVEC SIDEBAR
   ============================================================ */

.app-layout {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ---- SIDEBAR ---- */
.sidebar {
    width: 220px;
    background: rgba(10, 26, 14, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(212, 175, 55, 0.08);
    padding: 20px 14px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow-y: auto;
}

.sidebar .brand {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    margin-bottom: 16px;
}

.sidebar .brand .flag {
    font-size: 32px;
    display: block;
    margin-bottom: 2px;
}

.sidebar .brand h1 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.sidebar .brand .sub {
    font-size: 9px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* --- Profil --- */
.sidebar .profile {
    text-align: center;
    padding: 12px 0 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
    margin-bottom: 12px;
}

.sidebar .profile .avatar {
    font-size: 36px;
    display: block;
    margin-bottom: 2px;
}

.sidebar .profile .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.sidebar .profile .grade {
    font-size: 10px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    display: inline-block;
    padding: 1px 14px;
    border-radius: 20px;
    margin-top: 2px;
}

/* --- Stats mini --- */
.sidebar .stats-mini {
    display: flex;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 8px 4px;
    margin-bottom: 14px;
}

.sidebar .stats-mini div {
    text-align: center;
}

.sidebar .stats-mini .val {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
}

.sidebar .stats-mini .lbl {
    font-size: 7px;
    text-transform: uppercase;
    color: var(--text-grey);
    letter-spacing: 0.5px;
}

/* --- Navigation --- */
.sidebar .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.sidebar .nav-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-grey);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.2s;
}

.sidebar .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
}

.sidebar .nav-menu a.active {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border-left: 2px solid var(--gold);
}

.sidebar .nav-menu a .icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.sidebar .nav-menu .separator {
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    margin: 6px 0;
}

.sidebar .nav-menu .cat {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--text-grey);
    padding: 6px 12px 2px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* --- Déconnexion --- */
.sidebar .logout-btn {
    margin-top: auto;
    padding: 10px 12px;
    text-align: center;
    color: var(--red-light);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    padding-top: 14px;
}

.sidebar .logout-btn:hover {
    background: rgba(139, 47, 47, 0.1);
}

/* ---- CONTENU PRINCIPAL ---- */
.main-content {
    flex: 1;
    padding: 28px 36px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.main-content .page-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2px;
}

.main-content .page-sub {
    color: var(--text-grey);
    font-size: 13px;
    margin-bottom: 20px;
}

/* ============================================================
   CARTES
   ============================================================ */

.card {
    background: rgba(15, 42, 24, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.card h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- Progress Bar ---- */
.progress-bar {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    height: 10px;
    overflow: hidden;
}

.progress-bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: 16px;
    transition: width 0.6s ease;
}

/* ============================================================
   PAGE ACCUEIL (sans sidebar)
   ============================================================ */

.home-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.home-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    background: rgba(10, 26, 14, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.home-nav .brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.home-nav .brand small {
    font-size: 10px;
    color: var(--text-grey);
    font-weight: 400;
    margin-left: 4px;
}

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

.home-nav .nav-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.home-nav .nav-links a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
}

.home-nav .nav-links a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.home-nav .nav-links .btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--red));
    color: #fff !important;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.home-nav .nav-links .btn-nav:hover {
    transform: scale(1.03);
}

.home-content {
    flex: 1;
    padding: 20px 32px 40px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* ---- Hero ---- */
.hero {
    text-align: center;
    padding: 40px 20px 30px;
}

.hero .badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 100px;
    padding: 4px 18px;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero h1 .gold {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
}

.hero h1 .white {
    color: #fff;
}

.hero .subtitle {
    font-size: 14px;
    color: var(--text-grey);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero .quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-grey);
    margin: 10px 0 16px;
    font-weight: 300;
}

.hero .quote span {
    color: var(--gold);
    font-weight: 500;
}

.hero .description {
    max-width: 540px;
    margin: 0 auto 24px;
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.7;
}

.hero .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .actions .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--red));
    color: #fff !important;
    padding: 11px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
    text-decoration: none;
    display: inline-block;
}

.hero .actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.hero .actions .btn-secondary {
    background: transparent;
    color: var(--text-white) !important;
    padding: 11px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: 0.25s;
    text-decoration: none;
    display: inline-block;
}

.hero .actions .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
}

/* ---- Features ---- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 20px 0 10px;
}

.feature-card {
    background: rgba(15, 42, 24, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.feature-card .icon {
    font-size: 30px;
    margin-bottom: 6px;
}

.feature-card h3 {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.4;
}

/* ============================================================
   AUTH (CONNEXION) — STYLE "EXPEDITION CANADA"
   ============================================================ */

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-main);
    position: relative;
    z-index: 1;
}

.auth-container {
    max-width: 360px;
    width: 100%;
    margin: 20px;
    background: rgba(15, 42, 24, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.auth-container .auth-brand .flag {
    font-size: 40px;
    display: block;
    margin-bottom: 4px;
}

.auth-container .auth-brand h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
}

.auth-container .auth-brand .sub {
    font-size: 10px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.auth-container h2 {
    font-size: 18px;
    color: var(--gold-light);
    margin: 16px 0 4px;
}

.auth-container .auth-sub {
    color: var(--text-grey);
    font-size: 12px;
    margin-bottom: 18px;
}

.auth-container .form-group {
    margin-bottom: 12px;
    text-align: left;
}

.auth-container .form-group label {
    display: block;
    color: var(--text-grey);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 600;
}

.auth-container .form-group input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

.auth-container .form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.05);
}

.auth-container .btn-auth {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s;
}

.auth-container .btn-auth:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.auth-container .auth-switch {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-grey);
}

.auth-container .auth-switch a {
    color: var(--gold);
    cursor: pointer;
    font-weight: 600;
}

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

/* ============================================================
   ROULETTE
   ============================================================ */

.wheel-container {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 16px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--gold);
    position: relative;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.05);
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    color: var(--red);
    z-index: 10;
    text-shadow: 0 0 20px rgba(139, 47, 47, 0.3);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    color: #fff;
}

.spin-btn {
    background: linear-gradient(135deg, var(--gold), var(--red));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.25s;
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
}

.spin-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================================
   BATTLE PASS
   ============================================================ */

.bp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.bp-level-card {
    background: rgba(15, 42, 24, 0.25);
    border: 2px solid rgba(212, 175, 55, 0.06);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bp-level-card .level-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-grey);
}

.bp-level-card .level-num.unlocked {
    color: var(--gold);
}

.bp-level-card .reward-icon {
    font-size: 24px;
    margin: 2px 0;
}

.bp-level-card .reward-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-white);
}

.bp-level-card .status-badge {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 2px;
}

.bp-level-card .status-badge.locked {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-grey);
}

.bp-level-card .status-badge.unlocked {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.bp-level-card .status-badge.claimed {
    background: rgba(74, 158, 74, 0.12);
    color: #7bc47b;
}

.bp-level-card.unlocked {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
}

.bp-level-card .btn-claim {
    margin-top: 4px;
    padding: 3px 14px;
    border: none;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.bp-level-card .btn-claim.free {
    background: linear-gradient(135deg, var(--gold), var(--red));
    color: #fff;
}

.bp-level-card .btn-claim:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bp-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.bp-tabs button {
    padding: 8px 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    background: transparent;
    color: var(--text-grey);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
    max-width: 180px;
}

.bp-tabs button:hover {
    border-color: var(--gold);
    color: var(--text-white);
}

.bp-tabs button.active {
    background: linear-gradient(135deg, var(--gold), var(--red));
    border-color: var(--gold);
    color: #fff;
}

/* ============================================================
   QUÊTES
   ============================================================ */

.quest-item {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.04);
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
}

.quest-item .info .title {
    font-weight: 600;
    font-size: 13px;
}

.quest-item .info .desc {
    font-size: 11px;
    color: var(--text-grey);
}

.quest-item .rewards {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: var(--gold);
}

.quest-item .btn-quest {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

.quest-item .btn-quest:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* ============================================================
   ADMIN - TABLEAU DES COMPTES
   ============================================================ */

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th {
    text-align: left;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-white);
}

.admin-table td .badge-admin {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    padding: 1px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.admin-table td .badge-user {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-grey);
    padding: 1px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.admin-table .btn-action {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-grey);
    padding: 3px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 11px;
    transition: 0.2s;
    margin: 0 2px;
}

.admin-table .btn-action:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.admin-table .btn-action.danger:hover {
    border-color: var(--red);
    color: var(--red-light);
}

/* ============================================================
   UTILITAIRES
   ============================================================ */

.text-muted { color: var(--text-grey); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red-light); }
.text-sm { font-size: 12px; }
.text-xs { font-size: 10px; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.hidden { display: none !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8 { gap: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .sidebar {
        width: 60px;
        padding: 12px 8px;
    }

    .sidebar .brand h1, .sidebar .brand .sub,
    .sidebar .profile .name, .sidebar .profile .grade,
    .sidebar .stats-mini .lbl,
    .sidebar .nav-menu a span:not(.icon),
    .sidebar .nav-menu .cat,
    .sidebar .logout-btn span {
        display: none;
    }

    .sidebar .brand .flag { font-size: 24px; }
    .sidebar .profile .avatar { font-size: 28px; }
    .sidebar .stats-mini .val { font-size: 12px; }
    .sidebar .stats-mini { flex-direction: column; gap: 4px; padding: 6px 4px; }
    .sidebar .nav-menu a { padding: 8px 10px; justify-content: center; }
    .sidebar .nav-menu a .icon { font-size: 18px; width: auto; }
    .sidebar .logout-btn { font-size: 10px; padding: 8px; }

    .main-content { padding: 16px; }
    .main-content .page-title { font-size: 20px; }

    .home-nav { padding: 10px 16px; flex-direction: column; gap: 6px; }
    .home-nav .nav-links { gap: 6px; flex-wrap: wrap; justify-content: center; }
    .home-content { padding: 12px 16px; }
    .hero h1 { font-size: 34px; }
    .bp-grid { grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); }
    .features { grid-template-columns: 1fr 1fr; }
    .admin-table { font-size: 11px; }
    .admin-table th, .admin-table td { padding: 6px 8px; }
}

@media (max-width: 480px) {
    .sidebar {
        width: 50px;
        padding: 8px 4px;
    }
    .sidebar .brand .flag { font-size: 20px; }
    .sidebar .profile .avatar { font-size: 22px; }
    .sidebar .stats-mini .val { font-size: 10px; }
    .sidebar .nav-menu a { padding: 6px 6px; }
    .sidebar .nav-menu a .icon { font-size: 16px; }

    .main-content { padding: 10px; }
    .main-content .page-title { font-size: 17px; }
    .home-nav .nav-links a { font-size: 11px; padding: 3px 8px; }
    .hero h1 { font-size: 26px; }
    .hero .actions { flex-direction: column; align-items: center; }
    .hero .actions .btn-primary, .hero .actions .btn-secondary { width: 100%; text-align: center; }
    .features { grid-template-columns: 1fr; }
    .bp-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-tabs button { font-size: 11px; padding: 6px 12px; max-width: 140px; }
    .wheel-container { width: 200px; height: 200px; }
    .auth-container { padding: 24px 16px; margin: 12px; }
}