/* =========================================================
   1000GO Cloud — Style professionnel SaaS
   Remplace complètement l'ancien static/style.css par celui-ci.
   ========================================================= */

:root {
    --bg: #f5f7fb;
    --bg-2: #eef3fb;
    --card: #ffffff;
    --card-soft: #f8fafc;
    --text: #0b1220;
    --text-2: #172033;
    --muted: #667085;
    --muted-2: #94a3b8;
    --line: #e4e7ec;
    --line-strong: #cbd5e1;
    --primary: #0b5fff;
    --primary-dark: #0847c2;
    --primary-soft: #e8f0ff;
    --navy: #08111f;
    --navy-2: #101b2e;
    --danger: #d92d20;
    --danger-soft: #fee4e2;
    --success: #039855;
    --success-soft: #dcfae6;
    --warning: #f79009;
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 8px 20px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 20px 45px rgba(16, 24, 40, 0.10);
    --radius: 16px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(11, 95, 255, 0.10), transparent 32rem),
        linear-gradient(180deg, #fbfdff 0%, var(--bg) 46%, #f7f9fc 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 45%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button:disabled,
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none !important;
    box-shadow: none !important;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.muted {
    color: var(--muted);
}

/* ---------- Boutons / formulaires ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 11px 16px;
    background: linear-gradient(180deg, #176bff 0%, var(--primary) 100%);
    color: #ffffff;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 9px 18px rgba(11, 95, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.22);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.btn:hover {
    background: linear-gradient(180deg, #0f62ed 0%, var(--primary-dark) 100%);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(11, 95, 255, 0.24), inset 0 1px 0 rgba(255,255,255,0.20);
}

.btn-secondary {
    background: rgba(255,255,255,0.88);
    color: var(--text-2);
    border-color: var(--line);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--text);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.btn-danger {
    background: var(--danger-soft);
    color: var(--danger);
    border-color: #fecdca;
    box-shadow: none;
}

.btn-danger:hover {
    background: #fecdca;
    border-color: #fda29b;
    color: #b42318;
    box-shadow: none;
}

.btn-small {
    min-height: 34px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 13px;
}

.field {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    background: #ffffff;
    color: var(--text);
    box-shadow: var(--shadow-xs);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.field::placeholder {
    color: #98a2b3;
}

.field:hover {
    border-color: #cfd7e3;
}

.field:focus {
    border-color: rgba(11, 95, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.11);
}

textarea.field {
    min-height: 150px;
    resize: vertical;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    padding: 7px 11px;
    border: 1px solid rgba(11, 95, 255, 0.16);
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin: 14px 0;
    font-weight: 730;
    border: 1px solid transparent;
}

.alert-error {
    background: var(--danger-soft);
    border-color: #fecdca;
    color: #b42318;
}

.alert-success {
    background: var(--success-soft);
    border-color: #abefc6;
    color: #027a48;
}

.alert-info,
.alert-message {
    background: var(--primary-soft);
    border-color: #c7d7fe;
    color: var(--primary-dark);
}

/* ---------- Navigation publique ---------- */
.nav,
.top-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo,
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 880;
    letter-spacing: -0.03em;
}

.logo-mark,
.brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    flex: none;
    overflow: hidden;
    border-radius: 13px;
    background: linear-gradient(145deg, #0b5fff, #6f3cff);
    box-shadow: 0 12px 24px rgba(11, 95, 255, 0.24);
}

.logo-mark::before,
.brand-mark::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 12px;
    top: 12px;
    border: 2px solid rgba(255,255,255,0.72);
    border-radius: 6px;
}

.logo-mark::after,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 28% 20%, rgba(255,255,255,.55), transparent 28px);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* ---------- Landing ---------- */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    align-items: center;
    gap: 46px;
    padding: 78px 0 42px;
}

.hero::after {
    content: "";
    position: absolute;
    right: -70px;
    top: 52px;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background: rgba(11, 95, 255, 0.12);
    filter: blur(40px);
    z-index: -1;
}

.hero h1,
.page-hero h1,
.auth-brand h1,
.topbar h1 {
    color: var(--text);
    letter-spacing: -0.06em;
}

.hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    font-size: clamp(46px, 6.6vw, 82px);
    line-height: .92;
}

.hero p {
    max-width: 670px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.72;
}

.hero-card,
.feature,
.plan,
.card,
.section,
.content-card,
.auth-card,
.payment-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(228, 231, 236, 0.92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 18px;
}

.hero-card::before {
    content: "Cloud privé";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: var(--primary-dark);
    border: 1px solid rgba(255,255,255,0.48);
    font-size: 12px;
    font-weight: 850;
    box-shadow: var(--shadow-xs);
}

.storage-card {
    position: relative;
    min-height: 185px;
    overflow: hidden;
    border-radius: 22px;
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 18%, rgba(111, 60, 255, .55), transparent 11rem),
        linear-gradient(145deg, #08111f 0%, #10213c 56%, #0b5fff 145%);
    margin-bottom: 10px;
}

.storage-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -54px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 42px;
    transform: rotate(18deg);
}

.storage-card h3 {
    margin: 18px 0 8px;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.fake-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
}

.fake-row:last-child {
    border-bottom: 0;
}

.icon,
.file-icon {
    width: 42px;
    height: 42px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 36px 0 24px;
}

.feature {
    border-radius: 22px;
    padding: 24px;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.feature:hover,
.plan:hover,
.card:hover,
.section:hover,
.content-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 95, 255, 0.20);
    box-shadow: var(--shadow-md);
}

.feature h3 {
    margin: 15px 0 8px;
    font-size: 19px;
    letter-spacing: -0.03em;
}

.pricing-section {
    padding: 42px 0 76px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 12px 0 0;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.plans {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 205px;
    border-radius: 20px;
    padding: 20px;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.plan.featured {
    border-color: rgba(11, 95, 255, 0.38);
    box-shadow: 0 22px 50px rgba(11, 95, 255, 0.13);
}

.plan.featured::after {
    content: "Recommandé";
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
}

.plan.current {
    border-color: rgba(11, 95, 255, 0.46);
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 68%);
    box-shadow: 0 22px 50px rgba(11, 95, 255, 0.12);
}

.plan.current::before {
    content: "Actuel";
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #dbeafe;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
}

.plan h3,
.plan-name {
    margin: 0 0 9px;
    padding-right: 72px;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.price,
.plan-price {
    margin: 14px 0 4px;
    color: #050b18;
    font-size: 31px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.plan .btn,
.plan form,
.plan a.btn,
.plan button.btn {
    width: 100%;
    margin-top: auto !important;
}

.plan a.btn,
.plan button.btn {
    white-space: normal;
}

/* ---------- Pages auth ---------- */
.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(420px, .88fr) 1.12fr;
    background: var(--bg);
}

.auth-brand {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 18%, rgba(11, 95, 255, 0.72), transparent 18rem),
        radial-gradient(circle at 82% 78%, rgba(111, 60, 255, 0.45), transparent 18rem),
        linear-gradient(145deg, var(--navy), var(--navy-2));
}

.auth-brand::after {
    content: "";
    position: absolute;
    inset: auto -18% -26% auto;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 80px;
    transform: rotate(18deg);
}

.auth-brand h1,
.auth-brand p {
    color: #ffffff;
}

.auth-brand h1 {
    max-width: 680px;
    margin: 42px 0 18px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .94;
}

.auth-brand p {
    max-width: 560px;
    color: rgba(255,255,255,.74);
    font-size: 18px;
    line-height: 1.72;
}

.auth-panel {
    display: grid;
    place-items: center;
    padding: 34px;
    background:
        radial-gradient(circle at bottom right, rgba(11, 95, 255, .08), transparent 28rem),
        var(--bg);
}

.auth-card {
    width: min(430px, 100%);
    border-radius: 24px;
    padding: 32px;
}

.auth-card h2 {
    margin: 0 0 8px;
    font-size: 31px;
    letter-spacing: -0.04em;
}

.auth-card form {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

.auth-link {
    display: block;
    margin-top: 18px;
    color: var(--primary-dark);
    font-weight: 800;
    text-align: center;
}

.privacy-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* ---------- Dashboard ---------- */
.app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 282px minmax(0, 1fr);
    background: #f4f6fb;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 5%, rgba(11, 95, 255, .55), transparent 17rem),
        linear-gradient(180deg, #07101d 0%, #0d1626 100%);
    border-right: 1px solid rgba(255,255,255,.10);
}

.sidebar .brand {
    margin-bottom: 28px;
    color: #ffffff;
}

.sidebar .badge {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
    color: #ffffff;
}

.nav-item {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 7px;
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255,255,255,.68);
    font-weight: 780;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.nav-item:hover {
    color: #ffffff;
    background: rgba(255,255,255,.09);
    transform: translateX(2px);
}

.nav-item.active {
    color: #ffffff;
    background: rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.sidebar-bottom {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.user-card {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.user-card .muted,
.user-email {
    color: rgba(255,255,255,.60) !important;
}

.user-email {
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.main {
    min-width: 0;
    padding: 30px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.topbar h1 {
    margin: 10px 0 0;
    font-size: 36px;
    line-height: 1;
}

.cards {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: 18px;
    margin-bottom: 18px;
}

.card,
.section {
    border-radius: 22px;
    padding: 22px;
}

.storage-head,
.section-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.storage-head h2,
.section-title h2,
.quick-actions h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.progress {
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9edf4;
}

.progress-bar {
    height: 100%;
    width: var(--progress, 0%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary) 0%, #6f3cff 100%);
    box-shadow: 0 0 18px rgba(11, 95, 255, .28);
}

.quick-actions {
    display: grid;
    gap: 13px;
}

.create-folder {
    display: flex;
    gap: 10px;
}

.create-folder .field {
    flex: 1;
}

.upload-box {
    padding: 18px;
    border: 1px dashed #b7cdfd;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7faff, #ffffff);
}

.upload-box form {
    display: grid;
    gap: 12px;
}

.path-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0;
}

.path-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.90);
    color: var(--text-2);
    font-weight: 800;
    box-shadow: var(--shadow-xs);
}

.search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    margin: 0 0 18px;
}

.section {
    margin-bottom: 18px;
}

.list {
    display: grid;
    gap: 10px;
}

.row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 70px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.row:hover {
    background: #fbfdff;
    border-color: #c7d7fe;
    box-shadow: var(--shadow-xs);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.folder-icon {
    background: #fff7ed;
    color: #c2410c;
}

.file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
    font-weight: 850;
}

.row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.row-actions form {
    margin: 0;
}

.empty {
    padding: 30px;
    border: 1px dashed #cfd7e3;
    border-radius: 18px;
    background: #fbfcfe;
    color: var(--muted);
    text-align: center;
}

/* ---------- Paiement / pages info ---------- */
.payment-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at bottom right, rgba(11, 95, 255, .10), transparent 28rem),
        var(--bg);
}

.payment-card {
    width: min(720px, 100%);
    border-radius: 24px;
    padding: 30px;
}

.payment-card h1 {
    margin: 16px 0 8px;
    font-size: 34px;
    letter-spacing: -0.045em;
}

.summary {
    margin: 22px 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfcfe;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
    border-bottom: 0;
}

.paypal-box {
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #c7d7fe;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 800;
}

#paypal-button-container {
    margin-top: 16px;
}

.page-hero {
    padding: 48px 0 24px;
}

.page-hero h1 {
    max-width: 840px;
    margin: 16px 0;
    font-size: clamp(38px, 6vw, 64px);
    line-height: .98;
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.content-card {
    margin: 18px 0 42px;
    padding: 30px;
    border-radius: 24px;
}

.content-card h2 {
    margin-top: 0;
    letter-spacing: -0.035em;
}

.content-card h3 {
    margin-top: 26px;
}

.content-card p,
.content-card li {
    color: var(--muted);
    line-height: 1.75;
}

.content-card ul {
    padding-left: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-form {
    display: grid;
    gap: 13px;
}

.footer {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.footer a:hover,
.auth-link:hover {
    color: var(--primary-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 720px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        height: auto;
    }

    .sidebar-bottom {
        margin-top: 18px;
    }

    .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-brand {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav,
    .top-nav,
    .topbar,
    .storage-head,
    .section-head,
    .section-title,
    .path-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-actions {
        width: 100%;
        justify-content: stretch;
    }

    .nav-actions .btn {
        flex: 1;
    }

    .features,
    .plans,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: clamp(42px, 14vw, 64px);
    }

    .main,
    .auth-panel,
    .auth-brand,
    .payment-page {
        padding: 18px;
    }

    .card,
    .section,
    .auth-card,
    .payment-card,
    .content-card {
        padding: 18px;
        border-radius: 20px;
    }

    .search-box,
    .row {
        grid-template-columns: 1fr;
    }

    .row-actions {
        justify-content: flex-start;
    }

    .create-folder {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .fake-row {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   1000GO Cloud — Premium V2
   Design plus professionnel : glassmorphism léger, cards enterprise,
   dashboard plus sérieux, forfaits premium, responsive amélioré.
   ========================================================= */

:root {
    --bg: #f7f9fc;
    --bg-2: #edf2f8;
    --card: #ffffff;
    --card-soft: #f8fafc;
    --text: #08111f;
    --text-2: #182230;
    --muted: #667085;
    --muted-2: #98a2b3;
    --line: #e6eaf0;
    --line-strong: #cbd5e1;
    --primary: #155eef;
    --primary-dark: #0b3b91;
    --primary-soft: #edf4ff;
    --navy: #07111f;
    --navy-2: #0c1726;
    --premium: #635bff;
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 10px 24px rgba(16, 24, 40, 0.07);
    --shadow-md: 0 22px 55px rgba(16, 24, 40, 0.12);
    --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.16);
    --radius: 14px;
    --radius-lg: 26px;
}

html {
    background: #f7f9fc;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(21, 94, 239, 0.13), transparent 34rem),
        radial-gradient(circle at 95% 4%, rgba(99, 91, 255, 0.10), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 48%, #f5f7fb 100%);
}

body::before {
    opacity: .55;
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.30), transparent 46%);
}

.container {
    width: min(1240px, calc(100% - 48px));
}

/* Barre de navigation plus premium */
.nav,
.top-nav {
    min-height: 86px;
    padding: 10px 0;
}

.logo,
.brand {
    font-size: 21px;
    font-weight: 920;
}

.logo-mark,
.brand-mark {
    border-radius: 15px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255,255,255,.85), transparent 17px),
        linear-gradient(145deg, #155eef 0%, #635bff 100%);
    box-shadow: 0 16px 34px rgba(21, 94, 239, .24);
}

.logo-mark::before,
.brand-mark::before {
    width: 16px;
    height: 16px;
    left: 13px;
    top: 13px;
    border-radius: 5px;
}

.nav-actions .btn,
.top-nav .btn {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
}

.btn {
    min-height: 44px;
    border-radius: 12px;
    font-weight: 820;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #246bfe 0%, #155eef 100%);
    box-shadow: 0 12px 24px rgba(21, 94, 239, 0.22), inset 0 1px 0 rgba(255,255,255,0.30);
}

.btn:hover {
    background: linear-gradient(180deg, #155eef 0%, #0b3b91 100%);
    box-shadow: 0 16px 34px rgba(21, 94, 239, 0.28), inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn-secondary {
    color: #243044;
    background: rgba(255,255,255,.76);
    border-color: rgba(203, 213, 225, .85);
    box-shadow: 0 1px 2px rgba(16,24,40,.04), inset 0 1px 0 rgba(255,255,255,.80);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.96);
    border-color: #b8c3d3;
}

.badge {
    padding: 7px 12px;
    border-color: rgba(21, 94, 239, .18);
    background: rgba(237,244,255,.88);
    color: #0b3b91;
    font-size: 12px;
    font-weight: 900;
    text-transform: none;
    backdrop-filter: blur(10px);
}

.field {
    min-height: 48px;
    border-radius: 13px;
    border-color: #dfe5ee;
    box-shadow: inset 0 1px 0 rgba(16,24,40,.02), 0 1px 2px rgba(16,24,40,.04);
}

input[type="file"].field {
    padding: 9px;
    background: #fff;
}

input[type="file"]::file-selector-button {
    margin-right: 12px;
    border: 0;
    border-radius: 10px;
    padding: 9px 12px;
    background: #edf4ff;
    color: #0b3b91;
    font-weight: 850;
    cursor: pointer;
}

/* Landing page : plus SaaS / premium */
.hero {
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
    gap: 56px;
    min-height: calc(100vh - 122px);
    padding: 54px 0 56px;
}

.hero::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 72px;
    width: 92px;
    height: 92px;
    border-radius: 28px;
    border: 1px solid rgba(21,94,239,.16);
    background: rgba(255,255,255,.62);
    transform: rotate(-14deg);
    box-shadow: var(--shadow-sm);
    z-index: -1;
}

.hero::after {
    right: -110px;
    top: 70px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(21,94,239,.14), transparent 62%);
    filter: blur(34px);
}

.hero h1 {
    max-width: 820px;
    margin: 20px 0 24px;
    font-size: clamp(52px, 7vw, 92px);
    line-height: .90;
    letter-spacing: -0.075em;
}

.hero p {
    max-width: 680px;
    color: #5d6b82;
    font-size: 19.5px;
    line-height: 1.74;
}

.hero > div:first-child > div[style*="display:flex"] {
    align-items: center;
    gap: 13px !important;
    margin-top: 28px;
}

.hero > div:first-child::after {
    content: "5 Go inclus  •  Paiement PayPal  •  Espace privé";
    display: inline-flex;
    margin-top: 22px;
    padding: 10px 13px;
    border: 1px solid rgba(203,213,225,.82);
    border-radius: 999px;
    color: #475467;
    background: rgba(255,255,255,.74);
    box-shadow: var(--shadow-xs);
    font-size: 13px;
    font-weight: 760;
    backdrop-filter: blur(10px);
}

.hero-card {
    border-radius: 32px;
    padding: 20px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: var(--shadow-xl);
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

.hero-card::before {
    content: "Aperçu stockage";
    top: 20px;
    right: 20px;
    color: #0b3b91;
    background: rgba(255,255,255,.88);
    border-color: rgba(203,213,225,.70);
}

.storage-card {
    min-height: 205px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 10%, rgba(99,91,255,.66), transparent 10rem),
        radial-gradient(circle at 10% 110%, rgba(21,94,239,.55), transparent 10rem),
        linear-gradient(145deg, #07111f 0%, #101d30 55%, #163b78 125%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.storage-card h3 {
    font-size: 28px;
}

.fake-row {
    margin: 0 2px;
    padding: 17px 10px;
    border-bottom-color: #edf0f5;
}

.fake-row strong:last-child {
    color: #182230;
    font-weight: 900;
}

.icon,
.file-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
}

.features {
    padding: 24px 0 30px;
}

.feature,
.plan,
.card,
.section,
.content-card,
.auth-card,
.payment-card {
    background: rgba(255,255,255,.88);
    border-color: rgba(230,234,240,.96);
    box-shadow: 0 10px 30px rgba(16,24,40,.06);
}

.feature,
.plan {
    border-radius: 24px;
}

.feature h3 {
    font-size: 20px;
}

/* Forfaits : style cartes premium */
.pricing-section {
    padding: 46px 0 86px;
}

.section-head h2 {
    font-size: clamp(36px, 4.4vw, 54px);
    letter-spacing: -0.07em;
}

.plan {
    min-height: 236px;
    padding: 22px;
    overflow: hidden;
}

.plan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(21,94,239,.16), rgba(99,91,255,.22));
}

.plan.featured,
.plan.current {
    border-color: rgba(21,94,239,.34);
    box-shadow: 0 24px 58px rgba(21,94,239,.14);
}

.plan.featured::before,
.plan.current::before {
    height: 5px;
    background: linear-gradient(90deg, #155eef, #635bff);
}

.plan.current::after {
    content: "Forfait actuel";
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #0b3b91;
    font-size: 11px;
    font-weight: 950;
}

.plan.current::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 0;
}

.plan h3,
.plan-name {
    font-size: 19px;
    padding-right: 104px;
}

.price,
.plan-price {
    margin-top: 17px;
    font-size: 35px;
}

.plan p.muted {
    line-height: 1.55;
}

.plan a.btn,
.plan button.btn {
    min-height: 44px;
    border-radius: 13px;
    font-size: 13.5px;
}

/* Auth : plus sérieux */
.auth-page {
    grid-template-columns: minmax(430px, .95fr) 1.05fr;
}

.auth-brand {
    background:
        radial-gradient(circle at 18% 14%, rgba(21,94,239,.70), transparent 19rem),
        radial-gradient(circle at 88% 84%, rgba(99,91,255,.42), transparent 18rem),
        linear-gradient(150deg, #050b14 0%, #0a1424 54%, #0d1d34 100%);
}

.auth-card {
    padding: 36px;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.auth-card h2 {
    font-size: 34px;
}

/* Dashboard : plus application pro */
.app-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    background:
        radial-gradient(circle at 34% 0%, rgba(21,94,239,.08), transparent 28rem),
        #f5f7fb;
}

.sidebar {
    padding: 24px 20px;
    background:
        radial-gradient(circle at 23% 0%, rgba(21,94,239,.55), transparent 17rem),
        linear-gradient(180deg, #07111f 0%, #0a1424 52%, #08111f 100%);
    box-shadow: 18px 0 60px rgba(15,23,42,.12);
}

.sidebar .brand {
    min-height: 54px;
    padding: 6px 6px;
    margin-bottom: 24px;
}

.nav-item {
    position: relative;
    min-height: 46px;
    padding-left: 44px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14.5px;
}

.nav-item::before {
    content: "";
    position: absolute;
    left: 16px;
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,.36);
    box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}

.nav-item:hover,
.nav-item.active {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.10);
}

.nav-item.active::before {
    background: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}

.user-card {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.07));
}

.main {
    padding: 34px;
}

.topbar {
    margin-bottom: 26px;
}

.topbar h1 {
    font-size: 40px;
    letter-spacing: -0.06em;
}

.cards {
    grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
    gap: 20px;
}

.card,
.section {
    border-radius: 26px;
    padding: 24px;
}

.card:hover,
.section:hover,
.content-card:hover,
.feature:hover,
.plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.storage-head h2,
.section-title h2,
.quick-actions h2 {
    font-size: 23px;
}

.progress {
    height: 13px;
    background: #e7edf5;
    box-shadow: inset 0 1px 2px rgba(16,24,40,.08);
}

.progress-bar {
    background: linear-gradient(90deg, #155eef 0%, #635bff 68%, #8b5cf6 100%);
}

.upload-box {
    border-radius: 22px;
    border-color: #b8cdf8;
    background:
        radial-gradient(circle at top right, rgba(21,94,239,.08), transparent 12rem),
        linear-gradient(180deg, #f8fbff, #ffffff);
}

.path-pill {
    border-radius: 14px;
    background: rgba(255,255,255,.86);
}

.search-box {
    gap: 12px;
}

.row {
    min-height: 74px;
    border-radius: 18px;
    border-color: #e8ecf2;
    background: rgba(255,255,255,.86);
}

.row:hover {
    border-color: #bad0ff;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(16,24,40,.06);
}

.file-name {
    font-weight: 900;
}

.row-actions .btn {
    border-radius: 11px;
}

.empty {
    border-radius: 20px;
    background:
        linear-gradient(180deg, #fbfdff, #f7f9fc);
}

/* Pages info / contact */
.page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: -0.07em;
}

.content-card {
    border-radius: 28px;
    padding: 34px;
}

.contact-grid {
    gap: 30px;
}

.footer {
    margin-top: 10px;
}

/* Animation discrète */
@media (prefers-reduced-motion: no-preference) {
    .hero > div,
    .hero-card,
    .feature,
    .plan,
    .card,
    .section,
    .content-card,
    .auth-card,
    .payment-card {
        animation: premiumFade .45s ease both;
    }

    .feature:nth-child(2),
    .plan:nth-child(2),
    .card:nth-child(2) { animation-delay: .05s; }
    .feature:nth-child(3),
    .plan:nth-child(3) { animation-delay: .10s; }
    .plan:nth-child(4) { animation-delay: .15s; }

    @keyframes premiumFade {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Responsive premium */
@media (max-width: 1160px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 760px;
        transform: none;
    }

    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        height: auto;
        border-radius: 0 0 26px 26px;
    }

    .sidebar-bottom {
        margin-top: 18px;
    }
}

@media (max-width: 800px) {
    .container {
        width: min(100% - 30px, 1240px);
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 66px);
    }

    .hero > div:first-child::after {
        border-radius: 18px;
        line-height: 1.5;
    }

    .main {
        padding: 18px;
    }

    .cards,
    .plans,
    .features,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .section,
    .content-card,
    .auth-card,
    .payment-card {
        border-radius: 22px;
        padding: 20px;
    }

    .nav-actions .btn,
    .top-nav .btn,
    .btn {
        width: 100%;
    }

    .hero-card {
        padding: 14px;
    }
}


/* =========================================================
   Paramètres + choix de fond utilisateur
   ========================================================= */
body.theme-default .app-shell {
    background:
        radial-gradient(circle at 34% 0%, rgba(21,94,239,.08), transparent 28rem),
        #f5f7fb;
}

body.theme-ocean .app-shell {
    background:
        radial-gradient(circle at 18% 8%, rgba(14,165,233,.22), transparent 30rem),
        radial-gradient(circle at 86% 14%, rgba(37,99,235,.16), transparent 28rem),
        linear-gradient(135deg, #f7fbff 0%, #eef7ff 44%, #f8fafc 100%);
}

body.theme-aurora .app-shell {
    background:
        radial-gradient(circle at 18% 10%, rgba(99,102,241,.18), transparent 30rem),
        radial-gradient(circle at 82% 4%, rgba(14,165,233,.16), transparent 26rem),
        radial-gradient(circle at 64% 88%, rgba(168,85,247,.13), transparent 27rem),
        linear-gradient(135deg, #fbfdff 0%, #f5f3ff 48%, #f0f9ff 100%);
}

body.theme-graphite .app-shell {
    background:
        radial-gradient(circle at 28% 0%, rgba(100,116,139,.16), transparent 29rem),
        linear-gradient(135deg, #f8fafc 0%, #eef2f7 52%, #f8fafc 100%);
}

body.theme-violet .app-shell {
    background:
        radial-gradient(circle at 14% 2%, rgba(124,58,237,.22), transparent 30rem),
        radial-gradient(circle at 88% 10%, rgba(37,99,235,.16), transparent 30rem),
        linear-gradient(135deg, #fbfaff 0%, #f3f0ff 44%, #eff6ff 100%);
}

body.theme-custom .app-shell {
    background:
        linear-gradient(135deg, rgba(248,250,252,.90), rgba(239,246,255,.82)),
        var(--custom-bg-image, linear-gradient(135deg, #f8fafc, #eff6ff));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.theme-custom .main .section,
body.theme-custom .main .card,
body.theme-custom .settings-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
}


.settings-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(21,94,239,.10), transparent 18rem),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
}

.settings-hero h2 {
    margin: 12px 0 8px;
    max-width: 740px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.settings-current {
    min-width: 210px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.settings-current span,
.settings-current strong {
    display: block;
}

.settings-current strong {
    margin-top: 6px;
    color: var(--text);
    font-size: 18px;
}

.theme-form {
    display: grid;
    gap: 18px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.theme-option {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 230px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: var(--shadow-xs);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.theme-option:hover {
    transform: translateY(-3px);
    border-color: rgba(21,94,239,.38);
    box-shadow: var(--shadow-sm);
}

.theme-option.selected {
    border-color: rgba(21,94,239,.72);
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    box-shadow: 0 18px 40px rgba(21,94,239,.13);
}

.theme-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.theme-preview {
    display: block;
    height: 92px;
    border-radius: 17px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.theme-preview-default {
    background:
        radial-gradient(circle at 28% 5%, rgba(21,94,239,.16), transparent 55%),
        linear-gradient(135deg, #ffffff, #edf2f7);
}

.theme-preview-ocean {
    background:
        radial-gradient(circle at 18% 18%, rgba(14,165,233,.55), transparent 44%),
        linear-gradient(135deg, #f0f9ff, #dbeafe 52%, #ffffff);
}

.theme-preview-aurora {
    background:
        radial-gradient(circle at 20% 22%, rgba(99,102,241,.55), transparent 44%),
        radial-gradient(circle at 78% 20%, rgba(14,165,233,.42), transparent 42%),
        radial-gradient(circle at 72% 80%, rgba(168,85,247,.34), transparent 44%),
        linear-gradient(135deg, #ffffff, #f5f3ff);
}

.theme-preview-graphite {
    background:
        radial-gradient(circle at 28% 18%, rgba(100,116,139,.34), transparent 45%),
        linear-gradient(135deg, #ffffff, #e2e8f0);
}

.theme-preview-violet {
    background:
        radial-gradient(circle at 28% 20%, rgba(124,58,237,.52), transparent 45%),
        radial-gradient(circle at 78% 18%, rgba(37,99,235,.38), transparent 43%),
        linear-gradient(135deg, #fbfaff, #ede9fe);
}

.theme-preview-custom {
    background:
        radial-gradient(circle at 28% 20%, rgba(21,94,239,.38), transparent 46%),
        linear-gradient(135deg, #f8fafc, #dbeafe);
    background-size: cover;
    background-position: center;
}


.theme-info {
    display: grid;
    gap: 6px;
}

.theme-info strong {
    color: var(--text);
    font-size: 15px;
    letter-spacing: -0.02em;
}

.theme-info small {
    color: var(--muted);
    line-height: 1.45;
}

.theme-check {
    width: max-content;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
}

.custom-bg-section {
    overflow: hidden;
}

.custom-bg-layout {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.custom-bg-preview {
    min-height: 240px;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.60), var(--shadow-xs);
}

.custom-bg-preview.empty {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(21,94,239,.14), transparent 42%),
        linear-gradient(135deg, #f8fafc, #eef2ff);
    color: var(--muted);
    font-weight: 900;
}

.custom-bg-panel {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.custom-bg-panel h3 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.custom-bg-form {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.custom-bg-form.remove-form {
    margin-top: 10px;
}

.settings-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.settings-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-xs);
}

.settings-card h3 {
    margin: 12px 0 8px;
    font-size: 19px;
    letter-spacing: -0.03em;
}

.settings-card p {
    margin-bottom: 16px;
}

.settings-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 950;
}

.settings-status {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 11px;
    font-weight: 900;
}

.muted-card {
    opacity: .82;
}

.muted-card .settings-status {
    background: #f2f4f7;
    color: #667085;
}

@media (max-width: 1180px) {
    .theme-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .custom-bg-layout {
        grid-template-columns: 1fr;
    }

    .settings-hero {
        grid-template-columns: 1fr;
    }

    .settings-current {
        width: 100%;
    }

    .theme-grid {
        grid-template-columns: 1fr;
    }

    .settings-actions .btn {
        width: 100%;
    }
}


/* Icône officielle 1000GO dans la sidebar, la navbar et les pages auth */
.site-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    flex: 0 0 auto;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand .site-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
}

.logo .site-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.auth-brand .site-brand-icon {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 34px rgba(96, 165, 250, 0.35);
}
