/* =========================================================
   ASU Mods — Dashboard styles (thème Sakura)
   ========================================================= */

:root{
    --bg:            #150e13;
    --bg-alt:        #1b1117;
    --panel:         #241722;
    --panel-alt:     #2c1c29;
    --border:        rgba(255,222,235,.08);
    --border-strong: rgba(255,222,235,.15);
    --text:          #faf3f6;
    --text-dim:      #b9a3ae;
    --text-faint:    #8a7480;

    --blurple:       #EC6FA0;
    --blurple-dark:  #C94F80;
    --blurple-glow:  rgba(236,111,160,.35);
    --gold:          #F2B15C;

    --green:         #57F287;
    --red:           #ED4245;
    --yellow:        #FEE75C;
    --gray:          #99AAB5;

    --radius-sm: 9px;
    --radius:    16px;
    --radius-lg: 22px;

    --shadow:      0 10px 30px rgba(0,0,0,.35);
    --shadow-panel: 0 1px 0 rgba(255,255,255,.03) inset, 0 12px 30px -14px rgba(0,0,0,.5);
    --shadow-card:  0 12px 28px -12px rgba(0,0,0,.45);

    --glass:        rgba(40,25,37,.36);
    --glass-strong: rgba(40,25,37,.52);
}

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

html,body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
    min-height:100vh;
}

/* Halos de couleur ambiants, fixes en arrière-plan — donnent de la profondeur
   derrière les panneaux en verre dépoli. */
body::before,
body::after{
    content:"";
    position:fixed;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
    z-index:0;
}

body::before{
    width:680px; height:680px;
    top:-200px; right:-180px;
    background:radial-gradient(circle, rgba(236,111,160,.34), transparent 70%);
}

body::after{
    width:640px; height:640px;
    bottom:-220px; left:-150px;
    background:radial-gradient(circle, rgba(242,177,92,.24), transparent 70%);
}

/* Troisième halo, plus centré, pour que la couleur traverse aussi les panneaux du milieu d'écran. */
.app-shell::before{
    content:"";
    position:fixed;
    top:30%;
    left:45%;
    width:520px;
    height:520px;
    border-radius:50%;
    filter:blur(110px);
    background:radial-gradient(circle, rgba(236,111,160,.14), transparent 70%);
    pointer-events:none;
    z-index:0;
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; }

/* Set d'icônes SVG (remplace les emojis) — taille par défaut, surchargée
   au cas par cas selon le conteneur (.ico, .stat-ico, .module-ico, etc.) */
svg.icon{
    width:18px;
    height:18px;
    flex-shrink:0;
    display:block;
}

.icon.placeholder svg.icon{ width:32px; height:32px; color:var(--text-dim); }

.id-reveal{
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.id-reveal .id-value{
    display:none;
    font-family:monospace;
}

.id-reveal.shown .id-dots{ display:none; }
.id-reveal.shown .id-value{ display:inline; }

.id-eye{
    display:inline-flex;
    align-items:center;
    background:none;
    border:none;
    padding:2px;
    cursor:pointer;
    color:var(--text-faint);
}

.id-eye:hover{ color:var(--text); }
.id-eye svg.icon{ width:13px; height:13px; }

::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{ background:var(--panel-alt); border-radius:10px; }
::-webkit-scrollbar-thumb:hover{ background:var(--border-strong); }

/* =========================================================
   App shell
   ========================================================= */

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

.sidebar{
    width:264px;
    flex-shrink:0;
    background:rgba(27,17,23,.75);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-right:1px solid var(--border);
    display:flex;
    flex-direction:column;
    padding:22px 16px;
    position:sticky;
    top:0;
    height:100vh;
    overflow:hidden;
}

/* Le logo, le sélecteur de serveur et le profil restent fixes ; seule la
   liste des catégories défile (à la molette) quand elle dépasse la hauteur
   de l'écran. */
.sidebar-scroll{
    flex:1;
    min-height:0;
    overflow-y:auto;
    overflow-x:hidden;
    margin:0 -16px;
    padding:0 16px;
}

.sidebar::after{
    content:"";
    position:absolute;
    bottom:-40px;
    left:-50px;
    width:280px;
    height:280px;
    background:url('/images/sakura-branch.svg') no-repeat center/contain;
    opacity:.22;
    transform:rotate(200deg);
    pointer-events:none;
    z-index:0;
}

.sidebar::before{
    content:"";
    position:absolute;
    top:-40px;
    right:-60px;
    width:200px;
    height:150px;
    background:url('/images/sakura-branch.svg') no-repeat center/contain;
    opacity:.16;
    transform:scaleX(-1) rotate(-10deg);
    pointer-events:none;
    z-index:0;
}

.sidebar > *{ position:relative; z-index:1; }

.sidebar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    padding:6px 10px 22px;
}

.sidebar-brand .logo{
    width:38px;
    height:38px;
    border-radius:11px;
    object-fit:cover;
    box-shadow:0 4px 14px rgba(236,111,160,.3);
    flex-shrink:0;
}

.sidebar-brand .name{
    font-weight:700;
    font-size:16px;
    line-height:1.2;
}

.sidebar-brand .sub{
    font-size:12px;
    color:var(--text-faint);
}

.guild-switch{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:var(--radius-sm);
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    margin-bottom:18px;
    transition:.15s;
}

.guild-switch:hover{ border-color:var(--border-strong); }

.guild-switch img,
.guild-switch .icon-fallback{
    width:34px;
    height:34px;
    border-radius:9px;
    object-fit:cover;
    flex-shrink:0;
}

.guild-switch .icon-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--panel-alt);
    color:var(--text-dim);
}
.guild-switch .icon-fallback svg.icon{ width:17px; height:17px; }

.guild-switch .meta{
    min-width:0;
}

.guild-switch .meta .g-name{
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.guild-switch .meta .g-change{
    font-size:11px;
    color:var(--text-faint);
}

.nav-section-label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:var(--text-faint);
    padding:14px 12px 6px;
    font-weight:600;
}

.nav{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.nav a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 13px;
    border-radius:10px;
    color:var(--text-dim);
    font-size:14px;
    font-weight:500;
    border-left:3px solid transparent;
    transition:.15s;
}

.nav a .ico{
    width:26px;
    height:26px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:rgba(255,255,255,.06);
    transition:.15s;
}

.nav a .ico svg.icon{ width:15px; height:15px; }

.nav a .ico.ico-blurple{ background:rgba(236,111,160,.18); color:var(--blurple); }
.nav a .ico.ico-green{ background:rgba(87,242,135,.16); color:var(--green); }
.nav a .ico.ico-red{ background:rgba(237,66,69,.16); color:var(--red); }
.nav a .ico.ico-yellow{ background:rgba(254,231,92,.16); color:var(--yellow); }
.nav a .ico.ico-gray{ background:rgba(153,170,181,.16); color:var(--gray); }

.nav a.active .ico{ background:var(--blurple); color:#fff; }

.nav a:hover{
    background:rgba(255,255,255,.04);
    color:var(--text);
}

.nav a.active{
    background:linear-gradient(90deg, var(--blurple-glow), transparent);
    color:#fff;
    border-left-color:var(--blurple);
}

.sidebar-footer{
    margin-top:auto;
    padding-top:16px;
    border-top:1px solid var(--border);
}

.user-chip{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px;
    border-radius:var(--radius-sm);
}

.user-chip img{
    width:34px;
    height:34px;
    border-radius:50%;
}

.user-chip .u-name{
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:130px;
}

.user-chip .logout{
    margin-left:auto;
    color:var(--text-faint);
    display:flex;
    padding:6px;
    border-radius:8px;
}

.user-chip .logout svg.icon{ width:16px; height:16px; }

.user-chip .logout:hover{
    color:var(--red);
    background:rgba(237,66,69,.1);
}

/* =========================================================
   Main / Topbar
   ========================================================= */

.main{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
}

.topbar{
    height:72px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 32px;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    background:rgba(21,14,19,.75);
    backdrop-filter:blur(12px);
    box-shadow:0 4px 24px rgba(0,0,0,.15);
    z-index:10;
}

.topbar .crumb{
    font-size:12px;
    color:var(--text-faint);
    margin-bottom:2px;
    font-weight:500;
}

.topbar h1{
    font-size:20px;
    font-weight:700;
    letter-spacing:-.01em;
}

.topbar-right{
    display:flex;
    align-items:center;
    gap:16px;
}

.topbar-search-wrap{
    position:relative;
    display:flex;
    align-items:center;
}

.topbar-search-wrap svg.icon{
    position:absolute;
    left:12px;
    width:15px;
    height:15px;
    color:var(--text-faint);
    pointer-events:none;
}

.topbar-search{
    width:230px;
    background:var(--bg-alt);
    border:1px solid var(--border);
    color:var(--text);
    padding:9px 14px 9px 34px;
    border-radius:10px;
    font-size:13px;
    font-family:inherit;
    transition:.18s;
}

.topbar-search::placeholder{ color:var(--text-faint); }

.topbar-search:focus{
    outline:none;
    border-color:var(--blurple);
    box-shadow:0 0 0 3px var(--blurple-glow);
    width:280px;
}

.topbar-avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    border:2px solid var(--border-strong);
    transition:.15s;
}

.topbar-avatar:hover{ border-color:var(--blurple); }

.page{
    padding:32px 36px 48px;
    max-width:1600px;
    width:100%;
    position:relative;
}

.page::before{
    content:"";
    position:absolute;
    top:-10px;
    right:0;
    width:440px;
    height:330px;
    background:url('/images/sakura-branch.svg') no-repeat center/contain;
    opacity:.18;
    pointer-events:none;
    z-index:-1;
}

.page::after{
    content:"";
    position:absolute;
    bottom:0;
    left:-60px;
    width:320px;
    height:240px;
    background:url('/images/sakura-branch.svg') no-repeat center/contain;
    opacity:.13;
    transform:scaleX(-1) rotate(8deg);
    pointer-events:none;
    z-index:-1;
}

/* =========================================================
   Cards / stat tiles
   ========================================================= */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.card{
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:22px;
    box-shadow:var(--shadow-panel);
    transition:.2s;
}

.card:hover{ border-color:var(--border-strong); transform:translateY(-3px); box-shadow:var(--shadow-card); }

.card h3{
    font-size:13px;
    color:var(--text-dim);
    font-weight:600;
    margin-bottom:10px;
}

.card .icon{
    width:88px;
    height:88px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:14px;
}

.card .icon.placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    background:var(--panel-alt);
}

.stat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:18px;
    margin-bottom:28px;
}

.stat-tile{
    position:relative;
    overflow:hidden;
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:20px 22px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:var(--shadow-panel);
    transition:.2s;
}

.stat-tile::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--blurple), transparent);
    transform:scaleX(0);
    transition:transform .25s;
}

.stat-tile:hover{ border-color:var(--border-strong); transform:translateY(-2px); }
.stat-tile:hover::before{ transform:scaleX(1); }
.stat-tile:hover .stat-ico{ transform:scale(1.08); }

.stat-tile .stat-ico{
    width:48px;
    height:48px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:var(--blurple-glow);
    color:var(--blurple);
    transition:transform .2s;
}

.stat-tile .stat-ico svg.icon{ width:21px; height:21px; }

.stat-tile .stat-ico.green{ background:rgba(87,242,135,.15); color:var(--green); }
.stat-tile .stat-ico.red{ background:rgba(237,66,69,.15); color:var(--red); }
.stat-tile .stat-ico.yellow{ background:rgba(254,231,92,.15); color:var(--yellow); }

.stat-tile .stat-value{
    font-size:22px;
    font-weight:700;
    line-height:1.15;
}

.stat-tile .stat-label{
    font-size:12px;
    color:var(--text-faint);
}

.section-title{
    font-size:16.5px;
    font-weight:700;
    letter-spacing:-.01em;
    margin:6px 0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.section-title span.sub{
    font-size:12px;
    font-weight:500;
    color:var(--text-faint);
}

.section-title .sub a{
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.section-title .sub a svg.icon{ width:13px; height:13px; }
.section-title .sub a:hover{ color:var(--text); }

.panel{
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    margin-bottom:22px;
    box-shadow:var(--shadow-panel);
}

/* =========================================================
   Dashboard hero
   ========================================================= */

.dash-hero{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    background:linear-gradient(135deg, rgba(236,111,160,.16), rgba(242,177,92,.07) 55%, transparent);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:30px 34px;
    margin-bottom:28px;
    box-shadow:var(--shadow-panel);
}

.dash-hero::before{
    content:"";
    position:absolute;
    top:-70px; right:-50px;
    width:280px;
    height:230px;
    background:url('/images/sakura-branch.svg') no-repeat center/contain;
    opacity:.22;
    pointer-events:none;
}

.dash-hero-text{ position:relative; z-index:1; }

.dash-hero .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--blurple);
    margin-bottom:10px;
}

.dash-hero .eyebrow .dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--blurple);
    animation:kicker-pulse 2.2s ease-out infinite;
}

.dash-hero h2{
    font-size:25px;
    font-weight:800;
    letter-spacing:-.01em;
    margin-bottom:8px;
}

.dash-hero h2 .text-grad{
    background:linear-gradient(90deg,#F6A6C6,var(--gold));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.dash-hero p{
    color:var(--text-dim);
    font-size:14px;
    max-width:440px;
    margin-bottom:14px;
}

.dash-hero-id{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:var(--text-faint);
    background:rgba(0,0,0,.18);
    border:1px solid var(--border);
    padding:6px 12px;
    border-radius:20px;
}

.dash-hero-avatar-wrap{
    position:relative;
    z-index:1;
    flex-shrink:0;
}

.dash-hero-avatar{
    width:78px;
    height:78px;
    border-radius:50%;
    border:3px solid var(--border-strong);
    box-shadow:0 0 0 6px rgba(236,111,160,.1);
    display:block;
}

@media (max-width:640px){
    .dash-hero{ flex-direction:column; align-items:flex-start; text-align:left; }
    .dash-hero-avatar-wrap{ order:-1; }
}

/* =========================================================
   Module grid (Vue d'ensemble)
   ========================================================= */

.module-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:18px;
}

.module-card{
    display:flex;
    flex-direction:column;
    gap:12px;
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:20px;
    box-shadow:var(--shadow-panel);
    transition:.2s;
}

.module-card:hover{ border-color:var(--border-strong); transform:translateY(-3px); box-shadow:var(--shadow-card); }

.module-card .module-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
}

.module-card .module-ico{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.module-card .module-ico svg.icon{ width:20px; height:20px; }

.module-card .module-ico.ico-blurple{ background:rgba(236,111,160,.18); color:var(--blurple); }
.module-card .module-ico.ico-green{ background:rgba(87,242,135,.16); color:var(--green); }
.module-card .module-ico.ico-red{ background:rgba(237,66,69,.16); color:var(--red); }
.module-card .module-ico.ico-yellow{ background:rgba(254,231,92,.16); color:var(--yellow); }
.module-card .module-ico.ico-gray{ background:rgba(153,170,181,.16); color:var(--gray); }

.module-card h3{ font-size:14.5px; margin:2px 0 0; }
.module-card p{ font-size:12.5px; color:var(--text-faint); line-height:1.5; flex:1; }

.module-status{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:700;
    white-space:nowrap;
}

.module-status.on{ background:rgba(87,242,135,.14); color:var(--green); }
.module-status.off{ background:rgba(255,255,255,.06); color:var(--text-faint); }

/* =========================================================
   Activité récente (Vue d'ensemble)
   ========================================================= */

.activity-feed{
    padding:8px 24px;
}

.activity-empty{
    color:var(--text-faint);
    font-size:13.5px;
    text-align:center;
    padding:28px 0;
}

.activity-row{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid var(--border);
}

.activity-row:last-child{ border-bottom:none; }

.activity-ico{
    width:36px;
    height:36px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.activity-ico svg.icon{ width:17px; height:17px; }

.activity-ico.ico-blurple{ background:rgba(236,111,160,.18); color:var(--blurple); }
.activity-ico.ico-green{ background:rgba(87,242,135,.16); color:var(--green); }
.activity-ico.ico-red{ background:rgba(237,66,69,.16); color:var(--red); }
.activity-ico.ico-yellow{ background:rgba(254,231,92,.16); color:var(--yellow); }
.activity-ico.ico-gray{ background:rgba(153,170,181,.16); color:var(--gray); }

.activity-body{
    min-width:0;
    flex:1;
}

.activity-title{
    font-size:13.5px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.activity-detail{
    font-size:12px;
    color:var(--text-faint);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin-top:2px;
}

.activity-time{
    font-size:12px;
    color:var(--text-faint);
    white-space:nowrap;
    flex-shrink:0;
}

/* =========================================================
   Server grid (guild picker)
   ========================================================= */

.guild-card{
    position:relative;
    overflow:hidden;
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:22px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    transition:.2s;
}

.guild-card::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--blurple), transparent);
    transform:scaleX(0);
    transition:transform .25s;
}

.guild-card:hover{ transform:translateY(-4px); border-color:var(--border-strong); box-shadow:var(--shadow-card); }
.guild-card:hover::before{ transform:scaleX(1); }
.guild-card:hover img,
.guild-card:hover .icon-fallback{ transform:scale(1.05); }

.guild-card img,
.guild-card .icon-fallback{
    width:80px;
    height:80px;
    border-radius:22px;
    object-fit:cover;
    margin-bottom:14px;
    transition:transform .2s;
}

.guild-card .icon-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--panel-alt);
    color:var(--text-dim);
}

.guild-card .icon-fallback svg.icon{ width:34px; height:34px; }

.guild-card h3{
    font-size:15px;
    margin-bottom:4px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:100%;
}

.guild-card .members{
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:12px;
    color:var(--text-faint);
    margin-bottom:16px;
}

.guild-card .members svg.icon{ width:12px; height:12px; }

/* =========================================================
   Buttons
   ========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:11px 22px;
    background:var(--blurple);
    color:#fff;
    border:none;
    border-radius:11px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 2px 12px rgba(236,111,160,.3);
    transition:.18s;
}

.btn:hover{ background:var(--blurple-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(236,111,160,.4); }
.btn:active{ transform:translateY(0); }

.btn-sm{ padding:7px 14px; font-size:13px; border-radius:9px; box-shadow:none; }
.btn-ghost{ background:transparent; border:1px solid var(--border-strong); color:var(--text); box-shadow:none; }
.btn-ghost:hover{ background:rgba(255,255,255,.06); box-shadow:none; }
.btn-danger{ background:var(--red); box-shadow:0 2px 12px rgba(237,66,69,.3); }
.btn-danger:hover{ background:#c53236; box-shadow:0 6px 20px rgba(237,66,69,.4); }
.btn-outline-danger{ background:transparent; border:1px solid var(--red); color:var(--red); box-shadow:none; }
.btn-outline-danger:hover{ background:rgba(237,66,69,.1); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; transform:none; box-shadow:none; }

/* =========================================================
   Tables
   ========================================================= */

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

table.styled{
    width:100%;
    border-collapse:collapse;
    font-size:13.5px;
}

table.styled th{
    text-align:left;
    color:var(--text-faint);
    font-weight:600;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.04em;
    padding:10px 14px;
    border-bottom:1px solid var(--border);
}

table.styled td{
    padding:13px 14px;
    border-bottom:1px solid var(--border);
    vertical-align:middle;
}

table.styled tr:last-child td{ border-bottom:none; }
table.styled tr:hover td{ background:rgba(255,255,255,.02); }

.empty-state{
    text-align:center;
    padding:60px 20px;
    color:var(--text-faint);
}

.empty-state .emoji{ font-size:40px; margin-bottom:14px; display:flex; justify-content:center; color:var(--text-dim); }
.empty-state .emoji svg.icon{ width:36px; height:36px; }

/* =========================================================
   Badges / pills
   ========================================================= */

.badge{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 10px;
    border-radius:999px;
    font-size:11.5px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.03em;
}

.badge-green{ background:rgba(87,242,135,.14); color:var(--green); }
.badge-red{ background:rgba(237,66,69,.14); color:var(--red); }
.badge-yellow{ background:rgba(254,231,92,.14); color:var(--yellow); }
.badge-gray{ background:rgba(153,170,181,.14); color:var(--gray); }
.badge-blurple{ background:var(--blurple-glow); color:#FBD9E6; }

.role-dot{
    width:11px;
    height:11px;
    border-radius:50%;
    display:inline-block;
    flex-shrink:0;
}

/* =========================================================
   Forms
   ========================================================= */

.field{ margin-bottom:18px; }

.field label{
    display:block;
    font-size:12.5px;
    font-weight:600;
    color:var(--text-dim);
    margin-bottom:8px;
}

.field input[type=text],
.field input[type=color],
.field input[type=number],
.field select,
.field textarea{
    width:100%;
    background:var(--bg-alt);
    border:1px solid var(--border);
    color:var(--text);
    padding:11px 14px;
    border-radius:10px;
    font-size:14px;
    font-family:inherit;
    transition:.15s;
}

.field input::placeholder,
.field textarea::placeholder{ color:var(--text-faint); }

.field input:focus,
.field select:focus,
.field textarea:focus{
    outline:none;
    border-color:var(--blurple);
    box-shadow:0 0 0 3px var(--blurple-glow);
}

.field-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.perm-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:10px;
    margin-top:6px;
}

.perm-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:var(--bg-alt);
    border:1px solid var(--border);
    padding:11px 14px;
    border-radius:11px;
    font-size:13px;
    transition:.15s;
}

.perm-item:has(input:checked){
    border-color:rgba(236,111,160,.45);
    background:rgba(236,111,160,.07);
}

.switch{
    position:relative;
    width:44px;
    height:25px;
    flex-shrink:0;
}

.switch input{ opacity:0; width:0; height:0; }

.switch .slider{
    position:absolute;
    inset:0;
    background:var(--panel-alt);
    border:1px solid var(--border-strong);
    border-radius:999px;
    transition:.2s;
    cursor:pointer;
}

.switch .slider::before{
    content:"";
    position:absolute;
    width:19px;
    height:19px;
    left:2px;
    top:2px;
    background:var(--text-dim);
    border-radius:50%;
    transition:.2s;
    box-shadow:0 1px 3px rgba(0,0,0,.3);
}

.switch input:checked + .slider{
    background:var(--blurple);
    border-color:var(--blurple);
    box-shadow:0 0 0 3px var(--blurple-glow);
}
.switch input:checked + .slider::before{ background:#fff; transform:translateX(19px); }

/* =========================================================
   Emoji picker
   ========================================================= */

.emoji-picker-wrap{ position:relative; display:inline-block; }

.emoji-picker-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 12px;
    background:var(--bg-alt);
    border:1px solid var(--border-strong);
    color:var(--text-dim);
    border-radius:8px;
    font-size:12.5px;
    font-weight:600;
    cursor:pointer;
    transition:.15s;
}

.emoji-picker-btn:hover{ border-color:var(--blurple); color:var(--text); }

.emoji-picker-popover{
    display:none;
    position:absolute;
    z-index:20;
    top:calc(100% + 8px);
    right:0;
    width:260px;
    max-height:220px;
    overflow-y:auto;
    background:var(--panel-alt);
    border:1px solid var(--border-strong);
    border-radius:12px;
    padding:10px;
    box-shadow:var(--shadow-card);
}

.emoji-picker-popover.open{ display:grid; grid-template-columns:repeat(6,1fr); gap:6px; }

.emoji-picker-popover .emoji-item{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    cursor:pointer;
    background:transparent;
    border:none;
    transition:.1s;
}

.emoji-picker-popover .emoji-item:hover{ background:rgba(236,111,160,.18); }
.emoji-picker-popover .emoji-item img{ width:22px; height:22px; }

.emoji-picker-popover .emoji-empty{
    grid-column:1 / -1;
    color:var(--text-faint);
    font-size:12.5px;
    text-align:center;
    padding:14px 4px;
}

.icon-preview-box{
    width:36px;
    height:36px;
    border-radius:9px;
    background:var(--bg-alt);
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.field-label-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:8px;
}

.field-label-row label{ margin-bottom:0; }

/* =========================================================
   Live moderation feed
   ========================================================= */

.live-feed{
    max-height:420px;
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.feed-item{
    display:flex;
    gap:12px;
    padding:10px 12px;
    border-radius:10px;
    background:var(--bg-alt);
    border-left:3px solid var(--border-strong);
    font-size:13px;
    animation:feedIn .2s ease;
}

@keyframes feedIn{
    from{ opacity:0; transform:translateY(-4px); }
    to{ opacity:1; transform:translateY(0); }
}

.feed-item img{
    width:28px;
    height:28px;
    border-radius:50%;
    flex-shrink:0;
}

.feed-item .feed-body{ min-width:0; flex:1; }

.feed-item .feed-meta{
    color:var(--text-faint);
    font-size:11.5px;
    margin-bottom:2px;
}

.feed-item .feed-content{
    color:var(--text);
    word-break:break-word;
    white-space:pre-wrap;
}

.feed-item.edit{ border-left-color:var(--yellow); }
.feed-item.delete{ border-left-color:var(--red); }
.feed-item.automod{ border-left-color:var(--red); background:rgba(237,66,69,.08); }

.feed-item .strike{ text-decoration:line-through; color:var(--text-faint); }

.live-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--green);
    display:inline-block;
    box-shadow:0 0 0 0 rgba(87,242,135,.6);
    animation:pulse 1.6s infinite;
}

@keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(87,242,135,.5); }
    70%{ box-shadow:0 0 0 6px rgba(87,242,135,0); }
    100%{ box-shadow:0 0 0 0 rgba(87,242,135,0); }
}

/* =========================================================
   Discord message preview
   ========================================================= */

.discord-preview{
    background:#313338;
    border-radius:var(--radius);
    padding:20px;
    font-family:'gg sans','Inter',sans-serif;
}

.discord-preview .dp-author{
    display:flex;
    gap:12px;
}

.discord-preview .dp-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    flex-shrink:0;
    object-fit:cover;
    background:var(--blurple);
}

.discord-preview .dp-attachment{
    display:none;
    max-width:400px;
    width:100%;
    border-radius:8px;
    margin-top:8px;
}

.file-drop{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Le vrai <input type=file> reste dans le DOM (accessible, cliquable via le
   label qui l'enveloppe) mais visuellement masqué — le bouton visible est le
   label stylé ci-dessous, pour remplacer le rendu natif du navigateur. */
.file-drop input[type=file],
.field input[type=file]{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.file-drop-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 16px;
    background:var(--panel-alt);
    border:1px solid var(--border-strong);
    color:var(--text);
    border-radius:9px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.15s;
    flex-shrink:0;
    position:relative;
}

.file-drop-btn:hover{
    background:var(--blurple-glow);
    border-color:var(--blurple);
}

.file-drop-btn:focus-within{
    outline:none;
    border-color:var(--blurple);
    box-shadow:0 0 0 3px var(--blurple-glow);
}

.file-drop-btn svg.icon{ width:15px; height:15px; flex-shrink:0; }

.file-drop-name{
    font-size:12.5px;
    color:var(--text-faint);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    flex:1;
    min-width:0;
}

.discord-preview .dp-name{
    color:#fff;
    font-weight:600;
    font-size:14px;
}

.discord-preview .dp-bot-tag{
    background:var(--blurple);
    color:#fff;
    font-size:10px;
    font-weight:700;
    padding:1px 5px;
    border-radius:4px;
    margin-left:6px;
    vertical-align:middle;
}

.discord-preview .dp-content{
    color:#dbdee1;
    font-size:14px;
    line-height:1.4;
    margin-top:2px;
    white-space:pre-wrap;
    word-break:break-word;
}

.discord-preview .dp-mention{
    background:rgba(236,111,160,.3);
    color:#FBD9E6;
    border-radius:3px;
    padding:0 2px;
}

.discord-preview .dp-embed{
    display:none;
    position:relative;
    margin-top:8px;
    background:#2b2d31;
    border-left:4px solid var(--blurple);
    border-radius:4px;
    padding:12px 16px;
    max-width:420px;
}

.discord-preview .dp-embed-thumb{
    display:none;
    position:absolute;
    top:12px;
    right:16px;
    width:64px;
    height:64px;
    border-radius:4px;
    object-fit:cover;
}

.discord-preview .dp-embed.has-thumb .dp-embed-title,
.discord-preview .dp-embed.has-thumb .dp-embed-desc{ padding-right:74px; }

/* =========================================================
   Constructeur d'embeds (Embed / Annonces)
   ========================================================= */

.eb-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
}

.eb-back{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:10px;
    background:var(--panel);
    color:var(--text-dim);
    flex-shrink:0;
}
.eb-back:hover{ background:var(--panel-alt); color:var(--text); }
.eb-back svg.icon{ width:16px; height:16px; }

.eb-name-input{
    flex:1;
    min-width:0;
    background:transparent;
    border:1px solid transparent;
    color:var(--text);
    font-size:20px;
    font-weight:700;
    padding:6px 10px;
    border-radius:8px;
}
.eb-name-input:hover{ background:var(--panel); }
.eb-name-input:focus{ outline:none; background:var(--panel); border-color:var(--blurple); }

.eb-header-actions{
    display:flex;
    gap:10px;
    flex-shrink:0;
}

.eb-embed-card{
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:18px;
    margin-bottom:16px;
    background:var(--bg-alt);
}

.eb-embed-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
    padding-bottom:12px;
    border-bottom:1px solid var(--border);
}

.eb-embed-index-label{
    font-size:13px;
    font-weight:700;
    color:var(--text-dim);
}

.eb-embed-remove{
    display:flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    border-radius:8px;
    background:rgba(237,66,69,.12);
    color:var(--red);
    flex-shrink:0;
}
.eb-embed-remove:hover{ background:rgba(237,66,69,.22); }
.eb-embed-remove svg.icon{ width:14px; height:14px; }

.eb-fields-list{ display:flex; flex-direction:column; gap:8px; margin-bottom:10px; }

.eb-field-row,
.eb-button-row{
    display:flex;
    gap:8px;
    align-items:center;
}

.eb-field-row .eb-field-name,
.eb-button-row .eb-button-label{ flex:1; min-width:0; }
.eb-field-row .eb-field-value,
.eb-button-row .eb-button-url{ flex:2; min-width:0; }

.eb-field-inline-label{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:12px;
    color:var(--text-faint);
    white-space:nowrap;
    flex-shrink:0;
}

.eb-field-remove,
.eb-button-remove{
    flex-shrink:0;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:var(--text-faint);
    background:none;
    border:none;
    cursor:pointer;
}
.eb-field-remove:hover,
.eb-button-remove:hover{ background:rgba(237,66,69,.12); color:var(--red); }
.eb-field-remove svg.icon,
.eb-button-remove svg.icon{ width:13px; height:13px; }

.eb-buttons-list{ display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }

.eb-field-row input[type=text],
.eb-button-row input[type=text]{
    background:var(--bg);
    border:1px solid var(--border);
    color:var(--text);
    padding:8px 10px;
    border-radius:8px;
    font-size:13px;
}
.eb-field-row input[type=text]:focus,
.eb-button-row input[type=text]:focus{
    outline:none;
    border-color:var(--blurple);
    box-shadow:0 0 0 3px var(--blurple-glow);
}

.discord-preview .dp-embed-author{
    color:#fff;
    font-weight:600;
    font-size:12.5px;
    margin-bottom:4px;
}

.discord-preview .dp-inline-emoji{
    width:16px;
    height:16px;
    object-fit:contain;
    vertical-align:-3px;
    margin:0 1px;
}

.discord-preview .dp-embed.show{ display:block; }

.discord-preview .dp-embed-title{
    color:#fff;
    font-weight:700;
    font-size:14px;
    margin-bottom:4px;
}

.discord-preview .dp-embed-desc{
    color:#dbdee1;
    font-size:13.5px;
    line-height:1.45;
    white-space:pre-wrap;
    word-break:break-word;
}

.discord-preview .dp-embed-fields{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:8px;
    margin-top:10px;
}

.discord-preview .dp-field-name{
    color:#fff;
    font-weight:600;
    font-size:12px;
    margin-bottom:2px;
}

.discord-preview .dp-field-value{
    color:#dbdee1;
    font-size:12px;
    word-break:break-word;
}

.discord-preview .dp-embed-img{
    width:100%;
    border-radius:4px;
    margin-top:10px;
    display:none;
}

.discord-preview .dp-embed-footer{
    color:#949ba4;
    font-size:11.5px;
    margin-top:10px;
    display:none;
}

.radio-toggle{
    display:flex;
    gap:10px;
    margin-bottom:16px;
}

.radio-toggle label{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:9px;
    border:1px solid var(--border-strong);
    background:var(--bg-alt);
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    color:var(--text-dim);
}

.radio-toggle input{ display:none; }
.radio-toggle input:checked + label{ border-color:var(--blurple); background:var(--blurple-glow); color:#fff; }

/* =========================================================
   Alerts / flash
   ========================================================= */

.alert{
    padding:14px 18px;
    border-radius:12px;
    font-size:13.5px;
    line-height:1.55;
    margin-bottom:18px;
    border:none;
    border-left:3px solid transparent;
}

.alert-info{ background:rgba(236,111,160,.08); border-left-color:var(--blurple); color:#FBD9E6; }
.alert-warn{ background:rgba(254,231,92,.06); border-left-color:var(--yellow); color:#f2e29b; }

/* =========================================================
   Landing page
   ========================================================= */

.landing-nav{
    position:sticky;
    top:0;
    z-index:10;
    background:rgba(21,14,19,.65);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
}

.landing-nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 6%;
    max-width:1280px;
    margin:0 auto;
}

.landing-nav .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    font-size:17px;
}

.landing-nav .brand .logo{
    width:36px; height:36px;
    border-radius:10px;
    object-fit:cover;
    box-shadow:0 4px 14px rgba(236,111,160,.3);
}

.hero{
    max-width:820px;
    margin:60px auto 40px;
    padding:0 6%;
    text-align:center;
    position:relative;
}

.petals{
    position:absolute;
    inset:-40px -6% auto -6%;
    height:480px;
    overflow:hidden;
    pointer-events:none;
    z-index:-1;
}

/* Les branches de sakura sont gérées par .landing-bg (fond fixe de toute
   la page) plutôt que scopées au hero — voir plus bas. */

.petals .petal{
    position:absolute;
    top:-40px;
    font-size:20px;
    opacity:.35;
    animation:petal-fall linear infinite;
    filter:blur(.2px);
}

@keyframes petal-fall{
    0%{   transform:translateY(0) translateX(0) rotate(0deg);   opacity:0; }
    10%{  opacity:.35; }
    90%{  opacity:.3; }
    100%{ transform:translateY(520px) translateX(30px) rotate(280deg); opacity:0; }
}

.hero .kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--panel);
    border:1px solid var(--border-strong);
    color:var(--text-dim);
    font-size:12.5px;
    font-weight:600;
    padding:6px 14px 6px 12px;
    border-radius:999px;
    margin-bottom:22px;
    box-shadow:0 2px 14px rgba(236,111,160,.12);
}

.hero .kicker .dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--blurple);
    box-shadow:0 0 0 0 rgba(236,111,160,.55);
    animation:kicker-pulse 2.2s ease-out infinite;
    flex-shrink:0;
}

@keyframes kicker-pulse{
    0%{   box-shadow:0 0 0 0 rgba(236,111,160,.55); }
    70%{  box-shadow:0 0 0 7px rgba(236,111,160,0); }
    100%{ box-shadow:0 0 0 0 rgba(236,111,160,0); }
}

.hero h1{
    font-size:46px;
    line-height:1.12;
    font-weight:800;
    letter-spacing:-.02em;
    margin-bottom:18px;
}

.hero h1 .grad{
    background:linear-gradient(90deg,#F6A6C6,var(--gold));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero p{
    font-size:16.5px;
    color:var(--text-dim);
    max-width:560px;
    margin:0 auto 30px;
    line-height:1.6;
}

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

.features-header{
    max-width:1100px;
    margin:30px auto 0;
    padding:0 6%;
    text-align:center;
}

.features-header .eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blurple);
    margin-bottom:8px;
}

.features-header h2{
    font-size:28px;
    font-weight:800;
    letter-spacing:-.01em;
    margin-bottom:36px;
}

.features{
    max-width:1100px;
    margin:0 auto 70px;
    padding:0 6%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:20px;
}

/* Fond de la page d'accueil : branches de sakura fixes (ne défilent pas
   avec le contenu), façon papier peint plutôt qu'un module de plus dans
   le flux de la page. */
.landing-bg{
    position:fixed;
    inset:0;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
}

.hero,
.features-header,
.features,
.landing-footer{
    position:relative;
    z-index:1;
}

.landing-bg .branch{
    position:absolute;
    background:url('/images/sakura-branch.svg') no-repeat center/contain;
}

.landing-bg .branch-1{
    top:-40px; right:-60px;
    width:440px; height:340px;
    opacity:.2;
}

.landing-bg .branch-2{
    top:38%; left:-90px;
    width:340px; height:260px;
    opacity:.13;
    transform:scaleX(-1) rotate(12deg);
}

.landing-bg .branch-3{
    bottom:-40px; right:8%;
    width:380px; height:290px;
    opacity:.15;
    transform:rotate(-8deg);
}

.landing-bg .branch-4{
    bottom:12%; left:2%;
    width:260px; height:200px;
    opacity:.1;
    transform:scaleX(-1);
}

@media (max-width:900px){
    .landing-bg .branch-2,
    .landing-bg .branch-4{ display:none; }
}

.feature-card{
    position:relative;
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px;
    overflow:hidden;
    transition:transform .2s, border-color .2s, box-shadow .2s;
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--blurple), transparent);
    transform:scaleX(0);
    transition:transform .3s;
}

.feature-card:hover{
    transform:translateY(-4px);
    border-color:var(--border-strong);
    box-shadow:var(--shadow-card);
}

.feature-card:hover::before{ transform:scaleX(1); }

.feature-card .f-ico{
    width:42px; height:42px;
    border-radius:11px;
    background:var(--blurple-glow);
    display:flex; align-items:center; justify-content:center;
    color:var(--blurple);
    margin-bottom:14px;
    transition:transform .2s;
}

.feature-card:hover .f-ico{ transform:scale(1.08); }

.feature-card .f-ico.ico-green{ background:rgba(87,242,135,.16); color:var(--green); }
.feature-card .f-ico.ico-red{ background:rgba(237,66,69,.16); color:var(--red); }
.feature-card .f-ico.ico-yellow{ background:rgba(254,231,92,.16); color:var(--yellow); }

.feature-card .f-ico svg.icon{ width:20px; height:20px; }

.feature-card h3{ font-size:15px; margin-bottom:6px; }
.feature-card p{ font-size:13.5px; color:var(--text-faint); line-height:1.5; }

.landing-footer{
    text-align:center;
    color:var(--text-faint);
    font-size:12.5px;
    padding:40px 6% 60px;
}

/* =========================================================
   Auth card (fallback simple pages)
   ========================================================= */

.center-screen{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.auth-card{
    background:var(--glass);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid var(--border);
    padding:48px;
    border-radius:var(--radius-lg);
    text-align:center;
    max-width:420px;
}

.auth-card .emoji{ font-size:40px; margin-bottom:14px; display:flex; justify-content:center; color:var(--yellow); }
.auth-card .emoji svg.icon{ width:36px; height:36px; }
.auth-card h1{ font-size:20px; margin-bottom:10px; }
.auth-card p{ color:var(--text-faint); font-size:14px; margin-bottom:24px; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width:900px){
    .sidebar{ display:none; }
    .page{ padding:20px; }
    .hero h1{ font-size:32px; }
}
