/* ===========================
   MIARECRAFT – GLOBAL STYLE V4
   =========================== */

/* Police futuriste */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Urbanist:wght@300;400;500;600&display=swap');

/* ==== RESET BASIC ==== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body.miare-body {
    min-height: 100vh;
    font-family: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, #171f4c 0, transparent 55%),
        radial-gradient(circle at bottom right, #3a124f 0, transparent 60%),
        linear-gradient(145deg, #050615, #040312);
    background-attachment: fixed;        /* <<< FIX */
    background-size: cover;              /* <<< FIX */
    color: #e6edff;
    overflow-x: hidden;
    position: relative;
}


/* ==== PALETTE / VARIABLES ==== */
:root {
    --bg-main: #050615;
    --bg-deep: #040312;

    --accent-cyan: #00e5ff;
    --accent-violet: #a855ff;
    --accent-green: #39ff14;
    --accent-orange: #ffb347;
    --accent-pink: #ff6bcb;

    --text-main: #e6edff;
    --text-soft: #9fa9d9;

    --border-soft: rgba(0, 229, 255, 0.35);
    --card-bg: rgba(7, 11, 32, 0.9);

    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-md: 18px;

    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.65);
    --shadow-neon: 0 0 18px rgba(0, 229, 255, 0.55);
    --shadow-violet: 0 0 24px rgba(168, 85, 255, 0.6);

    --transition-fast: 0.18s ease-out;
    --transition-med: 0.25s ease-out;
}

/* ==== GRILLE & SCANLINES MIARE ==== */

body.miare-body::before,
body.miare-body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body.miare-body::before {
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px;
    opacity: 0.9;
    mix-blend-mode: screen;
    animation: gridMove 18s linear infinite;
}

body.miare-body::after {
    background: repeating-linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65) 0,
        rgba(0, 0, 0, 0.65) 1px,
        rgba(0, 0, 0, 0.25) 2px,
        rgba(0, 0, 0, 0.25) 3px
    );
    opacity: 0.35;
    mix-blend-mode: soft-light;
}

@keyframes gridMove {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-40px, -40px, 0); }
}

/* ==== GLOBAL LAYOUT ==== */

.miare-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 16px 64px; /* espace sous le header */
    position: relative;
    z-index: 1;
}

/* ==== HEADER ==== */

.site-header {
    position: relative; /* statique dans le flux */
    z-index: 40;
    backdrop-filter: blur(22px);
    background: linear-gradient(to right, rgba(5, 7, 20, 0.96), rgba(5, 7, 20, 0.88));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
}

.logo-mark {
    font-size: 18px;
}

.logo-text {
    font-size: 13px;
}

.main-nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-soft);
    padding: 6px 12px;
    border-radius: 999px;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: "Orbitron", sans-serif;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(148, 163, 252, 0.18);
    transform: translateY(-1px);
}

.nav-link-accent {
    background: linear-gradient(120deg, var(--accent-cyan), var(--accent-violet));
    color: #020617;
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(0, 0, 0, 0.28);
}

.nav-link-accent:hover {
    filter: brightness(1.07);
}

/* ==== HERO ==== */

.hero {
    position: relative;
    margin-bottom: 40px;
}

.hero-background {
    position: absolute;
    inset: -32px;
    background:
        radial-gradient(circle at 15% 0, rgba(168, 85, 255, 0.35), transparent 60%),
        radial-gradient(circle at 85% 100%, rgba(0, 229, 255, 0.32), transparent 55%);
    opacity: 0.7;
    z-index: -1;
}

.hero-inner {
    padding: 28px 28px 22px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, rgba(0, 229, 255, 0.14), transparent 60%),
                rgba(6, 10, 32, 0.94);
    border: 1px solid rgba(0, 229, 255, 0.32);
    box-shadow: var(--shadow-soft), var(--shadow-violet);
    position: relative;
    overflow: hidden;
}

/* halo triple discret dans le hero */
.hero-inner::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 255, 0.28), transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(0, 229, 255, 0.26), transparent 65%),
        radial-gradient(circle at 50% 100%, rgba(255, 107, 203, 0.22), transparent 70%);
    opacity: 0.65;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.hero-inner > * {
    position: relative;
    z-index: 1;
}

.hero-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.brand-block {
    max-width: 540px;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-cyan);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.55);
}

.hero-title {
    margin: 10px 0 6px;
    font-size: 32px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: "Orbitron", sans-serif;
    background-image: linear-gradient(120deg, var(--accent-cyan), var(--accent-violet), var(--accent-pink));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow:
        0 0 12px rgba(0, 229, 255, 0.8),
        0 0 28px rgba(168, 85, 255, 0.65);
}

.hero-subtitle {
    margin: 0;
    color: var(--text-soft);
    max-width: 520px;
    font-size: 14px;
}

.hero-subtitle .accent {
    color: var(--accent-cyan);
    font-weight: 600;
}

.hero-cta {
    min-width: 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ==== GLASS CARDS GÉNÉRALES ==== */

.glass-card {
    border-radius: var(--radius-xl);
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

/* halo triple néon (B3 + H4-B) */
.glass-card::before {
    content: "";
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 255, 0.25), transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(0, 229, 255, 0.24), transparent 65%),
        radial-gradient(circle at 50% 100%, rgba(255, 107, 203, 0.22), transparent 70%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity var(--transition-med), transform var(--transition-med);
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover::before {
    opacity: 0.95;
    transform: translate3d(0, -4px, 0);
}

/* sous-carte interne éventuelle */
.glass-sub {
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.7);
    border: 1px solid rgba(148, 163, 252, 0.25);
}

/* ==== SERVER IP CARD ==== */

.server-ip-card {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ip-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
}

.ip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.ip-value {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.48);
    color: var(--accent-cyan);
    box-shadow: var(--shadow-neon);
}

.ip-status {
    font-size: 12px;
    color: var(--text-soft);
}

.ip-status.online {
    color: var(--accent-green);
}

/* ==== BUTTONS ==== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast), background var(--transition-fast);
    font-family: "Orbitron", sans-serif;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent-cyan), var(--accent-violet));
    color: #020617;
    box-shadow: 0 12px 25px rgba(0, 229, 255, 0.48);
}

.btn-primary:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
    border: 1px solid rgba(148, 163, 252, 0.4);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.98);
}

.btn-outline {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.7);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
}

.btn-discord {
    background: linear-gradient(120deg, #5662f6, #3b48e0);
    color: white;
    box-shadow: 0 10px 24px rgba(86, 98, 246, 0.4);
}

.btn-discord:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.discord-icon {
    font-size: 18px;
}

/* ==== TAGS HERO ==== */

.hero-tags-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 252, 0.35);
    font-size: 11px;
    color: var(--text-soft);
}

/* ==== SECTIONS GÉNÉRALES ==== */

.section {
    margin-top: 20px;
}

.section-title-block {
    margin-bottom: 18px;
}

.section-title {
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    font-family: "Orbitron", sans-serif;
}

.section-desc {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 14px;
    max-width: 640px;
}

/* ==== GRID INFOS (3 CARTES) ==== */

.section-grid .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    align-items: stretch;
    width: 100%;
}

.info-card {
    padding: 18px 20px 16px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.info-card p {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--text-soft);
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.info-tags span {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 252, 0.4);
}

/* halo triple aussi sur les info-cards */
.info-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 255, 0.25), transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(0, 229, 255, 0.23), transparent 65%),
        radial-gradient(circle at 50% 100%, rgba(255, 107, 203, 0.21), transparent 70%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity var(--transition-med), transform var(--transition-med);
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card:hover::before {
    opacity: 0.95;
    transform: translate3d(0, -4px, 0);
}

/* ==== SECTION 2 COLONNES ==== */

.section-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
    gap: 20px;
    align-items: stretch;
}

.focus-card,
.map-card {
    padding: 20px 20px 18px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.focus-card h3,
.map-card h2 {
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--accent-cyan);
}

.focus-card p,
.map-card .section-desc {
    font-size: 13px;
    color: var(--text-soft);
}

.steps-list {
    margin: 12px 0 14px;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 13px;
}

.map-placeholder {
    margin: 10px 0 12px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 252, 0.4);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-soft);
    font-size: 12px;
    background: radial-gradient(circle at top, rgba(0, 229, 255, 0.08), transparent 65%);
}

.map-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    color: var(--accent-cyan);
}

/* ==== GRADES ==== */

.section-grades .grades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.grade-card {
    padding: 18px 18px 16px;
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.grade-card::before {
    content: "";
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 255, 0.23), transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(0, 229, 255, 0.22), transparent 65%),
        radial-gradient(circle at 50% 100%, rgba(255, 107, 203, 0.2), transparent 70%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity var(--transition-med), transform var(--transition-med);
}

.grade-card > * {
    position: relative;
    z-index: 1;
}

.grade-card:hover::before {
    opacity: 0.95;
    transform: translate3d(0, -4px, 0);
}

.grade-name {
    margin: 0 0 6px;
    font-size: 16px;
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.grade-desc {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--text-soft);
}

.grade-list {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--text-soft);
}

.grade-highlight {
    border: 1px solid rgba(255, 179, 71, 0.85);
    box-shadow: 0 18px 40px rgba(255, 179, 71, 0.4);
}

.grade-tag {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 179, 71, 0.18);
    border-radius: 999px;
    padding: 3px 8px;
}

/* ==== FOOTER ==== */

.site-footer {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 7, 20, 0.96);
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 16px 16px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
    font-size: 13px;
}

.footer-col h4 {
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-violet);
    font-family: "Orbitron", sans-serif;
}

.footer-col p {
    margin: 0;
    color: var(--text-soft);
}

.footer-col a {
    display: block;
    color: var(--text-soft);
    text-decoration: none;
    margin-bottom: 4px;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    padding: 8px 12px 14px;
    font-size: 11px;
    color: var(--text-soft);
}

/* ==== SCROLLBAR THEME MIARE ==== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(4, 6, 20, 0.95);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-violet), var(--accent-cyan), var(--accent-pink));
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-cyan), var(--accent-violet));
}

/* ==== RESPONSIVE ==== */

@media (max-width: 900px) {
    .hero-inner {
        padding: 22px 18px 18px;
    }
    .section-two-columns {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-top-row {
        flex-direction: column;
    }
    .miare-page {
        padding-top: 96px;
    }
    .main-nav {
        display: none; /* menu burger plus tard */
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.offline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
    box-shadow: 0 0 12px rgba(120, 120, 120, 0.9);
    display: inline-block;
}

/* STATUS DOT */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
    background: #888;
    box-shadow: 0 0 6px rgba(255,255,255,0.3);
    vertical-align: middle;
}

.status-online {
    background: #00ff6a;
    box-shadow: 0 0 8px #00ff6a;
    animation: pulseOnline 1.4s infinite ease-in-out;
}

.status-offline {
    background: #ff3b3b;
    box-shadow: 0 0 8px #ff3b3b;
}

@keyframes pulseOnline {
    0%   { box-shadow: 0 0 6px #00ff6a; }
    50%  { box-shadow: 0 0 14px #00ff6a; }
    100% { box-shadow: 0 0 6px #00ff6a; }
}

.profile-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
}

.profile-card {
    background: rgba(25, 25, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.profile-section-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.profile-info-line {
    margin: 6px 0;
    font-size: 15px;
    opacity: 0.9;
}

.profile-value {
    font-weight: bold;
    color: #b7e0ff;
}

.mc-skin-3d {
    width: 170px;
    height: 230px;
    flex: none !important;
    min-height: 230px;
    min-width: 170px;
    position: relative;
}

.mc-avatar-card {
    text-align: center;
    margin: 15px 0 20px;
}

.mc-avatar-frame {
    width: 110px;
    height: 150px;
    margin: 0 auto 10px;
    padding: 8px;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.12), rgba(0,0,0,0.6));
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.mc-avatar-frame img {
    width: auto;
    height: 100%;
    image-rendering: pixelated;
}

.mc-avatar-name {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.85;
}

.mc-profile-layout {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 15px;
}

/* GROS RECTANGLE ARRONDI */
.mc-skin-box {
    width: 180px;
    height: 240px;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.9));
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.mc-skin-box img {
    height: 100%;      /* prend toute la hauteur de la box */
    width: auto;       /* respecte le ratio, pas d’étirement */
    image-rendering: pixelated;
    display: block;
}


/* Texte quand pas de pseudo */
.mc-skin-placeholder {
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: center;
    padding: 0 10px;
}

/* Colonne de texte à droite */
.mc-profile-infos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-badges {
    margin: 18px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 260px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: "Orbitron", sans-serif;
    color: #e6edff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

/* Couleurs spécifiques */
.badge-status {
    background: linear-gradient(135deg, rgba(57,255,20,0.25), rgba(4,120,87,0.75));
    color: #b7ffcf;
}

.badge-status .badge-dot {
    background: #39ff14;
}

.badge-whitelist {
    background: linear-gradient(135deg, rgba(168,85,255,0.3), rgba(55,48,163,0.9));
    color: #e4d7ff;
}

.badge-whitelist .badge-dot {
    background: #a855ff;
}

.badge-discord {
    background: linear-gradient(135deg, rgba(96,165,250,0.3), rgba(30,64,175,0.9));
    color: #dbeafe;
}

.badge-discord .badge-dot {
    background: #60a5fa;
}

