/* --------------------------------------------------
   FlirtMe - Nouveau style global avec thèmes
   -------------------------------------------------- */

/* ---------- Variables & thème par défaut (dark) ---------- */

:root {
    --st--white: #ffffff;

    /* Fond global dark */
    --st--bg: #050816;
    --st--bg-soft: #070b16;
    --st--bg-card: #020617;

    /* Accents FlirtMe */
    --st--accent: #ff6b9f;
    --st--accent-soft: #ffb3d1;
    --st--accent-dark: #e60073;

    --st--blue: #38bdf8;
    --st--green: #22c55e;

    /* Texte */
    --st--text-main: #DB3276;
    --st--text-soft: #f9a8d4;

    /* Bordures & ombres */
    --st--border-subtle: #334155;
    --st--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);

    /* Rayons & transitions */
    --st--radius-lg: 1.5rem;
    --st--radius-md: 1rem;
    --st--radius-sm: .5rem;
    --st--transition-fast: 0.2s ease-out;
    --st--transition-med: 0.3s ease-out;
}

/* ---------- Thème clair (si besoin) ---------- */

body.theme-light {
    --st--bg: #f9fafb;
    --st--bg-soft: #e5e7eb;
    --st--bg-card: #ffffff;

    --st--text-main: #DB3276;
    --st--text-soft: #f9a8d4;

    --st--shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* --------------------------------------------------
   RESET DE BASE
   -------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background-color: var(--st--bg);
    color: var(--st--text-main);
    -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------
   TYPOGRAPHIE
   -------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--st--white);
    margin-top: 0;
}

h1 {
    font-size: clamp(2.2rem, 2.8vw, 2.9rem);
}

h2 {
    font-size: clamp(1.6rem, 2.1vw, 2rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: .75rem;
    color: var(--st--text-main);
}

small,
.small {
    font-size: .825rem;
    color: var(--st--text-soft);
}

a {
    color: var(--st--accent);
    text-decoration: none;
    transition: color var(--st--transition-fast), opacity var(--st--transition-fast);
}

a:hover {
    color: var(--st--accent-soft);
}

/* --------------------------------------------------
   LAYOUT GÉNÉRAL
   -------------------------------------------------- */

main {
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1140px;
}

/* --------------------------------------------------
   BACKGROUNDS UTILITAIRES
   -------------------------------------------------- */

.bg-base {
    background-color: var(--st--bg);
}

.bg-soft {
    background-color: var(--st--bg-soft);
}

.bg-card {
    background-color: var(--st--bg-card);
}

/* --------------------------------------------------
   CARTES GLOBALES
   -------------------------------------------------- */

.card-soft {
    background: radial-gradient(circle at top left, rgba(248, 113, 113, .16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(56, 189, 248, .16), transparent 55%),
                #020617;
    border-radius: var(--st--radius-lg);
    border: 1px solid rgba(148, 163, 184, .3);
    box-shadow: var(--st--shadow-soft);
    padding: 1.7rem 1.6rem;
    position: relative;
    overflow: hidden;
}

.card-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(236, 72, 153, .08), transparent 50%);
    opacity: 0;
    transition: opacity var(--st--transition-med);
}

.card-soft:hover::before {
    opacity: 1;
}

.card-soft-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.1rem;
}

.card-soft-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--st--white);
}

/* --------------------------------------------------
   NAVBAR
   -------------------------------------------------- */

.navbar {
    position: relative;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .95rem;
    color: var(--st--white) !important;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-nav .nav-link {
    position: relative;
    color: var(--st--text-soft) !important;
    font-weight: 500;
    letter-spacing: .02em;
    border-radius: 999px;
    padding-inline: .85rem;
    padding-block: .4rem;
    margin-inline: .15rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    inset-inline: 10%;
    bottom: 6px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, .6), transparent);
    opacity: 0;
    transform: scaleX(.8);
    transform-origin: center;
    transition: opacity var(--st--transition-fast), transform var(--st--transition-fast);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    background-color: rgba(248, 113, 113, 0.12);
    color: var(--st--accent-soft) !important;
}

.navbar-btn-default {
    border-radius: 999px;
    padding-inline: 1.1rem;
    padding-block: .45rem;
    font-size: .9rem;
    font-weight: 600;
}

/* --------------------------------------------------
   HERO / HEADERS
   -------------------------------------------------- */

.hero {
    padding-block: 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 10% 20%, rgba(236, 72, 153, .18), transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(56, 189, 248, .25), transparent 65%),
        radial-gradient(circle at 90% 80%, rgba(52, 211, 153, .16), transparent 60%);
    opacity: 0.9;
    z-index: -1;
}

.hero__title {
    font-size: clamp(2.1rem, 2.9vw, 3rem);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--st--text-soft);
    max-width: 540px;
}

/* --------------------------------------------------
   TEXTE / LISTES
   -------------------------------------------------- */

ul.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

ul.custom-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .35rem;
    color: var(--st--text-soft);
    font-size: .96rem;
}

ul.custom-list li::before {
    content: "•";
    color: var(--st--accent-soft);
    font-size: 1.3rem;
}

/* --------------------------------------------------
   BOUTONS GLOBAUX
   -------------------------------------------------- */

.btn-primary {
    background: linear-gradient(135deg, var(--st--accent) 0%, var(--st--accent-dark) 100%);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .03em;
    padding-inline: 1.5rem;
    padding-block: .7rem;
    box-shadow: 0 16px 30px rgba(248, 113, 113, .45);
    transition: transform var(--st--transition-fast), box-shadow var(--st--transition-fast), filter var(--st--transition-fast);
}

.btn-primary:hover,
.btn-primary:focus {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(248, 113, 113, .6);
}

.btn-outline-secondary {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--st--text-main);
    background-color: transparent;
    padding-inline: 1.2rem;
    padding-block: .65rem;
    font-weight: 500;
}

.btn-outline-secondary:hover {
    background-color: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 1);
    color: var(--st--white);
}

.btn-send-upload {
    border-radius: 999px;
    padding-inline: 1.4rem;
    padding-block: .5rem;
    background: var(--st--blue);
    border: none;
    color: #0b1120;
    font-weight: 600;
}

/* Bouton plein FlirtMe */
.btn-flirtme {
    background-color: #DB3276;
    color: #ffffff !important;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 600;
    border: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(219, 50, 118, 0.35);
}

.btn-flirtme:hover {
    background-color: #b92463;
    box-shadow: 0 6px 16px rgba(185, 36, 99, 0.5);
}

/* Bouton outline FlirtMe */
.btn-outline-flirtme {
    border-radius: 10px;
    border: 2px solid #DB3276;
    color: #DB3276 !important;
    background: transparent;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.btn-outline-flirtme:hover {
    background: #DB3276;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(219, 50, 118, 0.35);
}

/* --------------------------------------------------
   FORMULAIRES
   -------------------------------------------------- */

input,
select,
textarea {
    background-color: #020617;
    border-radius: .9rem;
    border: 1px solid rgba(148, 163, 184, .6);
    color: var(--st--text-main);
    padding: .7rem .85rem;
    font-size: .96rem;
}

input::placeholder,
textarea::placeholder {
    color: rgba(148, 163, 184, .9);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--st--accent);
    box-shadow: 0 0 0 1px rgba(236, 72, 153, .4);
}

.form-group label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(148, 163, 184, .9);
    margin-bottom: .4rem;
}

.form-text {
    font-size: .8rem;
    color: rgba(148, 163, 184, .9);
}

/* --------------------------------------------------
   ALERTES
   -------------------------------------------------- */

.alert {
    border-radius: var(--st--radius-md);
    border: 1px solid rgba(148, 163, 184, .4);
    background-color: #020617;
    color: var(--st--text-soft);
}

/* --------------------------------------------------
   PROFIL / AVATARS
   -------------------------------------------------- */

.avatar {
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, .5);
    object-fit: cover;
}

.avatar--lg {
    width: 80px;
    height: 80px;
}

.avatar--xl {
    width: 140px;
    height: 140px;
}

.avatar-flirtme {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.avatar-large-flirtme {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.profile__online-indicator {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background-color: #22c55e;
    border: 2px solid #020617;
}

/* --------------------------------------------------
   LISTE MEMBRES
   -------------------------------------------------- */

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.3rem;
}

.member-card {
    text-align: center;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 60%),
                #020617;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, .4);
    padding: .9rem .6rem 1rem;
    position: relative;
    transition: transform var(--st--transition-fast), box-shadow var(--st--transition-fast), border-color var(--st--transition-fast);
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, .9);
    border-color: rgba(236, 72, 153, .8);
}

.member-card__name {
    margin-top: .35rem;
    font-size: .9rem;
    color: var(--st--text-soft);
}

/* --------------------------------------------------
   TABLES / DASHBOARD
   -------------------------------------------------- */

.table-dark {
    --bs-table-bg: #020617;
    --bs-table-striped-bg: #020617;
    --bs-table-striped-color: var(--st--text-main);
    --bs-table-border-color: rgba(148, 163, 184, .5);
}

.table-dark thead th {
    border-bottom-width: 1px;
    border-color: rgba(148, 163, 184, .7);
    font-weight: 600;
}

/* --------------------------------------------------
   FOOTER
   -------------------------------------------------- */

footer {
    border-top: 1px solid rgba(148, 163, 184, .4);
    background-color: #020617;
    padding-block: 1.6rem;
    margin-top: 2.5rem;
    font-size: .9rem;
    color: var(--st--text-soft);
}

.footer-flirtme {
    background: #111;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-flirtme a {
    color: #ff2e80 !important;
}

/* --------------------------------------------------
   BADGES / STATUTS
   -------------------------------------------------- */

.badge-online {
    background-color: #22c55e;
    color: #022c22;
    border-radius: 999px;
    padding-inline: .7rem;
    padding-block: .25rem;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.badge__profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #DB3276;
    color: #ffffff;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
}

/* --------------------------------------------------
   PAGES LOGIN / SIGNUP
   -------------------------------------------------- */

.signin {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top, rgba(236, 72, 153, .25), transparent 65%),
        radial-gradient(circle at bottom, rgba(37, 99, 235, .18), transparent 60%),
        #020617;
}

.signin__body {
    background-color: rgba(15, 23, 42, .96);
    border-radius: 1.7rem;
    padding: 1.9rem 2.4rem;
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
    border: 1px solid rgba(148, 163, 184, .7);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 1);
}

.signup__body {
    max-width: 620px;
}

.signin__logo {
    max-height: 48px;
    margin-bottom: 1.2rem;
}

.signin__title {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    letter-spacing: .05em;
}

.signin__subtitle {
    font-size: .95rem;
    color: var(--st--text-soft);
    margin-bottom: 1.5rem;
}

.signin__body form > label {
    display: block;
    margin-top: 1rem;
}

.signup-notice,
.signup-error-summary {
    border-radius: 8px;
    margin: 1rem 0 1.2rem;
    padding: .95rem 1rem;
    line-height: 1.45;
}

.signup-notice {
    background: #fff7fb;
    border: 1px solid #f0d7e2;
    color: #DB3276;
}

.signup-notice p {
    margin: .45rem 0 0;
}

.signup-error-summary {
    background: #fff1f2;
    border: 1px solid #f5b5c6;
    color: #b00040;
}

.signup-error-summary ul {
    margin: .5rem 0 0;
    padding-left: 1.2rem;
}

.signup-error-summary li {
    color: #b00040;
}

.signin__body .signup-help {
    display: block;
    margin: .4rem 0 1rem;
    line-height: 1.45;
    color: #DB3276;
}

.signin__body .mess__err {
    display: block;
    margin: .75rem 0 .35rem;
    color: #b00040;
    font-weight: 700;
}

.signup-submit-feedback {
    display: none;
    margin-top: .75rem;
    padding: .75rem .85rem;
    border: 1px solid #f0d7e2;
    border-radius: 8px;
    background: #fff7fb;
    color: #DB3276;
    line-height: 1.4;
}

.signup-submit-feedback.is-visible {
    display: block;
}

.profile-registration-result {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 8px;
    line-height: 1.45;
}

.profile-registration-result p {
    margin: .35rem 0 0;
}

.profile-registration-result--ok {
    background: #f0fff4;
    border: 1px solid #b7ebc6;
    color: #176b32;
}

.profile-registration-result--warn {
    background: #fff7fb;
    border: 1px solid #f0b8cf;
    color: #b00040;
}

/* --------------------------------------------------
   DASHBOARD
   -------------------------------------------------- */

.dashboard {
    padding-block: 2rem;
}

.dashboard__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard__title {
    font-size: 1.4rem;
}

.dashboard__subtitle {
    font-size: .95rem;
    color: var(--st--text-soft);
}

.admin-dashboard {
    font-size: .92rem;
}

.admin-dashboard h1 {
    font-size: 1.25rem;
    margin: 14px 0 10px;
    color: #DB3276;
    font-weight: 800;
}

.admin-dashboard h2 {
    font-size: 1.05rem;
    margin: 12px 0 8px;
    color: #DB3276;
    font-weight: 800;
}

.admin-dashboard [style*="border: 4px solid #ccc"] {
    border-width: 1px !important;
    border-color: #ead1dc !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
}

.admin-dashboard [style*="margin: 20px 0"] {
    margin: 12px 0 !important;
}

.admin-dashboard .table {
    font-size: .86rem;
    margin-bottom: .75rem;
}

.admin-dashboard .table th,
.admin-dashboard .table td {
    padding: .4rem .5rem;
    vertical-align: middle;
}

.admin-dashboard input,
.admin-dashboard select,
.admin-dashboard button {
    min-height: 34px;
    padding: 5px 8px;
    font-size: .9rem;
}

.admin-dashboard__panel {
    background: #ffffff;
    border: 1px solid #ead1dc;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .07);
    padding: 12px;
}

.admin-dashboard__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.admin-dashboard__panel-head small {
    display: block;
    margin-top: 2px;
    color: #DB3276;
    opacity: .76;
}

.admin-dashboard__announcement-list {
    display: grid;
    gap: 8px;
}

.admin-dashboard__announcement-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border: 1px solid #f0d7e2;
    border-radius: 8px;
    background: #fff7fb;
}

.admin-dashboard__announcement-item span {
    font-size: .82rem;
    font-weight: 700;
    color: #DB3276;
    opacity: .75;
}

.admin-users,
.admin-user-state {
    margin: 20px auto 32px;
    color: #DB3276;
}

.admin-users__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.admin-users__header h1 {
    margin: 0;
    color: #DB3276;
    font-size: 1.35rem;
    font-weight: 800;
}

.admin-users__header p {
    margin: 4px 0 0;
    color: #DB3276;
    font-size: .92rem;
}

.admin-users__link,
.admin-users__manage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #DB3276;
    color: #DB3276;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.admin-users__manage {
    min-height: 30px;
    padding: 5px 9px;
    background: #DB3276;
    color: #ffffff;
    font-size: .86rem;
}

.admin-users__notice,
.admin-users__filters,
.admin-users__create,
.admin-panel,
.admin-danger-zone {
    background: #ffffff;
    border: 1px solid #ead1dc;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .07);
}

.admin-users__notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    margin: 12px 0;
    font-size: .92rem;
}

.admin-users__notice a {
    color: #DB3276;
    font-weight: 700;
}

.admin-users__filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, .45fr)) auto auto;
    gap: 8px;
    margin: 12px 0;
    padding: 10px;
}

.admin-users__filters input,
.admin-users__filters select,
.admin-users__filters button,
.admin-users__create-form input,
.admin-users__create-form select,
.admin-users__create-form button,
.admin-panel input,
.admin-panel select,
.admin-panel textarea,
.admin-panel button {
    min-height: 34px;
    padding: 5px 8px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: .9rem;
}

.admin-users__filters button,
.admin-users__create-form button {
    border-color: #DB3276;
    background: #DB3276;
    color: #ffffff;
    font-weight: 700;
}

.admin-users__filters a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #DB3276;
    font-weight: 700;
    text-decoration: none;
}

.admin-users__create {
    margin: 12px 0;
    padding: 0;
}

.admin-users__create summary {
    cursor: pointer;
    padding: 10px 12px;
    font-weight: 800;
}

.admin-users__create-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 12px 12px;
}

.admin-users__create-form .row {
    grid-column: 1 / -1;
}

.admin-users__table-wrap {
    overflow-x: auto;
    border: 1px solid #ead1dc;
    border-radius: 8px;
    background: #ffffff;
}

.admin-users__table {
    margin: 0;
    font-size: .86rem;
}

.admin-users__table th,
.admin-users__table td {
    padding: .45rem .55rem;
    vertical-align: middle;
}

.admin-users__table td small {
    display: block;
    margin-top: 2px;
    color: #DB3276;
    opacity: .76;
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin: 2px 3px 2px 0;
    padding: 2px 7px;
    border-radius: 8px;
    border: 1px solid #ead1dc;
    background: #fff7fb;
    color: #DB3276;
    font-size: .78rem;
    font-weight: 800;
}

.admin-pill--status-0,
.admin-pill--ok {
    background: #effaf2;
    border-color: #b9e7c3;
    color: #176b32;
}

.admin-pill--status-1,
.admin-pill--warn {
    background: #fff7e8;
    border-color: #ffd38a;
    color: #9a5a00;
}

.admin-pill--status-2,
.admin-pill--status-3 {
    background: #fff1f2;
    border-color: #f5b5c6;
    color: #b00040;
}

.admin-panel {
    margin: 12px 0;
    padding: 12px;
}

.admin-panel h1,
.admin-danger-zone h1 {
    margin: 0 0 10px;
    color: #DB3276;
    font-size: 1.05rem;
    font-weight: 800;
}

.admin-panel form {
    display: grid;
    gap: 8px;
}

.admin-danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 16px 0 24px;
    padding: 14px;
    border-color: #f5b5c6;
    background: #fff1f2;
}

.admin-danger-zone p {
    margin: 0;
    color: #b00040;
    line-height: 1.45;
}

.admin-danger-zone__button {
    min-height: 38px;
    padding: 8px 12px;
    border: 0;
    border-radius: 8px;
    background: #c0392b;
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
}

.admin-announcements__form {
    display: grid;
    gap: 12px;
}

.admin-announcements__form label {
    display: grid;
    gap: 5px;
    font-weight: 800;
}

.admin-announcements__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.admin-announcements__target {
    padding: 12px;
    border: 1px solid #f0d7e2;
    border-radius: 8px;
    background: #fff7fb;
}

.admin-announcements__target h2 {
    margin: 0 0 10px;
    color: #DB3276;
    font-size: 1rem;
}

.admin-announcements__help {
    display: block;
    font-weight: 600;
    line-height: 1.4;
    color: #DB3276;
    opacity: .8;
}

.admin-announcements__preview {
    padding: 12px;
    border: 1px dashed #f0b8cf;
    border-radius: 8px;
    background: #fff7fb;
}

.admin-announcements__preview > strong {
    display: block;
    margin-bottom: 8px;
}

.admin-announcements__actions,
.admin-announcements__row-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-announcements__actions button,
.admin-announcements__row-actions button {
    min-height: 30px;
    padding: 5px 9px;
    border: 1px solid #DB3276;
    border-radius: 8px;
    background: #DB3276;
    color: #ffffff;
    font-size: .86rem;
    font-weight: 800;
}

.admin-announcements__delete {
    border-color: #c0392b !important;
    background: #c0392b !important;
}

.announcement-strip {
    padding: 18px 0 0;
    background: #f9fafb;
}

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

.announcement-card {
    padding: 14px;
    border: 1px solid #f0d7e2;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .07);
}

.announcement-card > strong {
    display: block;
    margin-bottom: 6px;
    color: #DB3276;
    font-size: 1.35rem;
    line-height: 1.22;
}

.announcement-card__body strong {
    font-size: inherit;
    line-height: inherit;
}

.announcement-card__body p,
.announcement-card p {
    margin: 0;
    line-height: 1.45;
}

.announcement-card__body strong,
.announcement-card__body em {
    display: inline;
}

.announcement-card__body p + p,
.announcement-card__body ul,
.announcement-card__body ol,
.announcement-card__body blockquote {
    margin-top: 8px;
}

.announcement-card__body h2,
.announcement-card__body h3 {
    margin: 8px 0;
    color: #DB3276;
}

.announcement-card__body h2 {
    font-size: 1.18rem;
}

.announcement-card__body h3 {
    font-size: 1.05rem;
}

.announcement-card__body img {
    display: block;
    max-width: min(100%, 260px);
    height: auto;
    margin: 10px auto;
    border-radius: 8px;
}

.announcement-card__body blockquote {
    margin-left: 0;
    padding: 8px 10px;
    border-left: 3px solid #DB3276;
    background: #fff0f6;
}

.announcement-card a {
    display: inline-flex;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #DB3276;
    color: #ffffff !important;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .admin-users__filters,
    .admin-users__create-form,
    .admin-announcements__grid {
        grid-template-columns: 1fr;
    }

    .admin-users__header,
    .admin-users__notice,
    .admin-danger-zone,
    .admin-dashboard__panel-head,
    .admin-dashboard__announcement-item {
        align-items: stretch;
        flex-direction: column;
    }
}

/* --------------------------------------------------
   UTILITAIRES
   -------------------------------------------------- */

.text-soft {
    color: var(--st--text-soft) !important;
}

.text-accent {
    color: var(--st--accent) !important;
}

.border-subtle {
    border-color: var(--st--border-subtle) !important;
}

.rounded-lg {
    border-radius: var(--st--radius-lg) !important;
}

.rounded-md {
    border-radius: var(--st--radius-md) !important;
}

.rounded-sm {
    border-radius: var(--st--radius-sm) !important;
}

.mt-6 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* --------------------------------------------------
   MEDIA QUERIES
   -------------------------------------------------- */

@media (max-width: 991.98px) {
    .dashboard__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-block: 3rem;
    }

    .signin__body {
        padding: 1.5rem 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .signin__body {
        padding: 1.4rem 1.1rem;
    }

    .members-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* --------------------------------------------------
   SECTION CONCEPT / SCAN
   -------------------------------------------------- */

.section-concept {
    padding-block: 3rem;
}

.section-concept h2 {
    color: #f9fafb;
    font-weight: 700;
}

.section-concept p {
    color: var(--st--text-soft);
}

/* --------------------------------------------------
   IMAGES / MÉDIAS
   -------------------------------------------------- */

.responsive-img {
    max-width: 100%;
    height: auto;
}

.img-thumb {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, .4);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .85);
}

/* --------------------------------------------------
   NAV PILLS
   -------------------------------------------------- */

.nav-pills .nav-link {
    border-radius: 999px;
    padding-inline: 1rem;
    padding-block: .45rem;
    font-size: .85rem;
    color: var(--st--text-soft);
    border: 1px solid transparent;
}

.nav-pills .nav-link.active {
    background-color: rgba(236, 72, 153, .14);
    border-color: rgba(236, 72, 153, .75);
    color: var(--st--white);
}

/* --------------------------------------------------
   GALERIE PROFIL
   -------------------------------------------------- */

.profile__gal {
    border-radius: 1.2rem;
    border: 1px dashed rgba(148, 163, 184, .6);
    background-color: rgba(15, 23, 42, .85);
    padding: 1rem;
}

.profile__gal__list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.profile__gal__item {
    width: 80px;
    height: 80px;
    border-radius: .9rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .7);
}

/* --------------------------------------------------
   NAVBAR TOGGLER
   -------------------------------------------------- */

.navbar-toggler {
    border: 1px solid rgba(148, 163, 184, .7);
}

/* --------------------------------------------------
   RÉGLAGES MOBILE SUPPLÉMENTAIRES
   -------------------------------------------------- */

@media (max-width: 991.98px) {
    .profile__gal__list {
        height: 260px;
    }

    .navbar-nav .nav-link {
        margin-top: .25rem;
    }
}

/* --------------------------------------------------
   CONTRASTE SECTIONS CLAIRES
   -------------------------------------------------- */

.bg-light {
    background-color: #f9fafb !important;
    color: #DB3276 !important;
}

.bg-white {
    background-color: #ffffff !important;
    color: #DB3276 !important;
}

.bg-light p,
.bg-white p,
.bg-light .text-muted,
.bg-white .text-muted {
    color: #DB3276 !important;
}

/* --------------------------------------------------
   SOCIAUX
   -------------------------------------------------- */

.social-cust {
    padding-inline: .9rem;
    padding-block: .35rem;
    height: 32px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--st--text-soft);
    font-size: 1rem;
    margin-right: .4rem;
}

.social-cust:hover {
    border-color: var(--st--accent);
    color: var(--st--accent-soft);
}

/* --------------------------------------------------
   HERO FLIRTME SPÉCIFIQUE (ACCUEIL MARKETING)
   -------------------------------------------------- */

.hero-section {
    background: #fafafa !important;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    color: #DB3276 !important;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.hero-subtitle {
    color: #444 !important;
    font-size: 1.3rem;
    opacity: 0.9;
}

/* phrase concept FlirtMe (rose & gras) */
.hero-concept-line {
    color: #DB3276 !important;
    font-weight: 700 !important;
    font-size: 1.15rem;
}

/* sous-titre / h2 plus visible en rose */
.hero-title-small {
    color: #DB3276 !important;
    font-weight: 700 !important;
}

/* Titres lisibles sur fond clair */
.bg-light h1, .bg-light h2, .bg-light h3,
.bg-white h1, .bg-white h2, .bg-white h3,
section.bg-light h1, section.bg-light h2, section.bg-light h3,
section.bg-white h1, section.bg-white h2, section.bg-white h3 {
    color: #DB3276 !important;
}
/* FORÇAGE NOM "FlirtMe" EN ROSE DANS LA NAVBAR */
.navbar .navbar-brand span {
    color: #DB3276 !important;
    font-weight: 800 !important;
}

/* --------------------------------------------------
   THEME CLAIR GLOBAL FLIRTME
   -------------------------------------------------- */

:root {
    --st--bg: #f9fafb;
    --st--bg-soft: #ffffff;
    --st--bg-card: #ffffff;
    --st--text-main: #DB3276;
    --st--text-soft: #DB3276;
    --st--border-subtle: #e5e7eb;
    --st--shadow-soft: 0 16px 38px rgba(17, 24, 39, 0.08);
}

body {
    background-color: #f9fafb !important;
    color: #DB3276;
}

main,
section {
    background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #DB3276;
}

p,
small,
.small,
label,
li,
td,
th {
    color: #DB3276;
}

.lead,
.text-muted {
    color: #DB3276 !important;
}

.card-soft,
.member-card,
.msg__body,
.profile__param__menu__body,
.profile__param__mod__body,
.admin__law__body,
.signin__body {
    background: #ffffff !important;
    color: #DB3276;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.card-soft-title,
.member-card__name,
.msg__body__title {
    color: #DB3276 !important;
}

.hero,
.signin {
    background: #f9fafb !important;
}

.hero::before {
    opacity: .35;
}

input,
select,
textarea {
    background-color: #ffffff !important;
    border-color: #d1d5db;
    color: #DB3276;
}

input::placeholder,
textarea::placeholder {
    color: #DB3276;
    opacity: .65;
}

.form-group label,
.form-text {
    color: #DB3276;
}

.alert {
    background-color: #ffffff;
    color: #DB3276;
    border-color: #e5e7eb;
}

.profile__gal {
    background-color: #ffffff;
    border-color: #e5e7eb;
}

.table-dark,
.table {
    --bs-table-bg: #ffffff;
    --bs-table-striped-bg: #f9fafb;
    --bs-table-striped-color: #DB3276;
    --bs-table-color: #DB3276;
    --bs-table-border-color: #e5e7eb;
    color: #DB3276;
}

.btn-outline-secondary:hover {
    color: #DB3276;
    background-color: #fff0f6;
}

.profile__bar__body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 0;
    align-items: stretch;
}

.profile__bar__link {
    flex: 1 1 160px;
    min-width: 0;
}

.profile__bar__text,
.profile__param_menu {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
    color: #DB3276;
}

.profile__bar__text__checked {
    background: #fff0f6;
    border-color: #DB3276;
}

.profile__param__menu__body {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.profile__param_menu__link {
    display: block;
}

.profile__gal__body {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    justify-content: center;
}

.profile__gal__list {
    width: min(100%, 340px);
    min-height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.profile__gal__image,
.profile__gal__image a {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    background: #fff7fb;
}

.profile__gal__img,
.search__body__card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}

.search__body__card__img {
    object-fit: cover;
}

.profile__header-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 100px;
    object-fit: cover;
    object-position: center;
}

.public-profile-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
    position: sticky;
    top: 90px;
}

.public-profile-card h2,
.public-profile-card h3 {
    color: #DB3276;
}

.public-profile-card h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.public-profile-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.public-profile-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f0d7e2;
}

.public-profile-row span {
    color: #DB3276;
    font-weight: 600;
}

.public-profile-row strong {
    color: #DB3276;
    text-align: right;
}

.public-profile-badge {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff0f6;
    color: #DB3276;
    font-weight: 800;
    text-align: center;
    border: 1px solid #f6b4d1;
}

.public-profile-description {
    margin-top: 16px;
}

.public-profile-description p,
.public-profile-status {
    color: #DB3276;
}

.public-profile-description p {
    line-height: 1.55;
}

.public-profile-status {
    margin-top: 14px;
    padding: 10px 12px;
    background: #fff7fb;
    border: 1px solid #f0d7e2;
    border-radius: 8px;
    font-weight: 600;
}

.public-profile-cta {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.public-profile-cta .btn {
    width: 100%;
}

@media (max-width: 991.98px) {
    .public-profile-card {
        position: static;
    }
}
