/* ==============================================
   ToxiBot — Stylesheet
   Clean, professional, no-BS design
   ============================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:       #0c0c10;
    --bg-alt:   #111116;
    --bg-card:  #16161c;
    --bg-hover: #1c1c24;
    --border:   #222230;
    --text:     #e4e4e7;
    --text-dim: #8b8b9a;
    --text-muted: #5a5a6e;
    --accent:   #5865F2;
    --accent-h: #4752c4;
    --red:      #e74c3c;
    --green:    #2ecc71;
    --yellow:   #f1c40f;
    --blue:     #3498db;
    --purple:   #9b59b6;
    --pink:     #e84393;
    --font:     'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:     'JetBrains Mono', 'Fira Code', monospace;
    --radius:   10px;
    --nav-h:    64px;
    --ease:     cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
code {
    font-family: var(--mono);
    font-size: 0.9em;
    background: rgba(88, 101, 242, 0.12);
    color: var(--accent);
    padding: 2px 7px;
    border-radius: 5px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
}
.btn--discord {
    background: var(--accent);
    color: #fff;
}
.btn--discord:hover {
    background: var(--accent-h);
    transform: translateY(-1px);
}
.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn--outline:hover {
    border-color: var(--text-dim);
    background: rgba(255,255,255,.03);
}
.btn--white {
    background: #fff;
    color: #111;
}
.btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}
.btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
}
.btn--ghost:hover {
    background: rgba(255,255,255,.14);
}
.btn--lg {
    padding: 14px 28px;
    font-size: 15px;
}
.btn--full { width: 100%; justify-content: center; }

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(12, 12, 16, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: background .3s;
}
.nav.scrolled {
    background: rgba(12, 12, 16, .96);
}
.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.nav__logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
}
.nav__links {
    display: flex;
    gap: 4px;
}
.nav__link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 6px;
    transition: all .15s;
}
.nav__link:hover {
    color: var(--text);
    background: rgba(255,255,255,.04);
}
.nav__link--active {
    color: #fff;
    background: rgba(88, 101, 242, .1);
}
.nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav__burger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s var(--ease);
}
.nav__burger.open span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}
.nav__burger.open span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px 16px;
        transform: translateY(-110%);
        opacity: 0;
        transition: all .3s var(--ease);
        pointer-events: none;
    }
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav__link {
        padding: 12px 16px;
        text-align: center;
    }
    .nav__burger { display: flex; }
    .nav__right .btn span { display: none; }
    .nav__right .btn { padding: 10px; }
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(88, 101, 242, .12) 0%, transparent 100%);
    pointer-events: none;
}
.hero__content {
    position: relative;
    max-width: 640px;
    padding: 80px 0 100px;
}
.hero__label {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(88, 101, 242, .1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.hero__title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.hero__desc {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}
.section--dark {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section__header {
    margin-bottom: 48px;
}
.section__header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

/* --- Grid --- */
.grid {
    display: grid;
    gap: 16px;
}
.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid--narrow {
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* --- Cards --- */
.card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s, transform .2s;
}
.card:hover {
    border-color: #333;
    transform: translateY(-2px);
}
.card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
}
.card__icon--red    { background: rgba(231,76,60,.1);  color: var(--red); }
.card__icon--blue   { background: rgba(52,152,219,.1); color: var(--blue); }
.card__icon--green  { background: rgba(46,204,113,.1); color: var(--green); }
.card__icon--yellow { background: rgba(241,196,15,.1); color: var(--yellow); }
.card__icon--purple { background: rgba(155,89,182,.1); color: var(--purple); }
.card__icon--pink   { background: rgba(232,67,147,.1); color: var(--pink); }

/* --- Split (text + visual) --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split__text h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.split__text > p {
    color: var(--text-dim);
    margin-bottom: 24px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Checklist --- */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dim);
}
.checklist i {
    color: var(--green);
    font-size: 13px;
    width: 20px;
    text-align: center;
}

/* --- Terminal / Discord Mockup --- */
.terminal {
    background: #1e1e24;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.terminal__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: #16161c;
    border-bottom: 1px solid var(--border);
}
.terminal__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.terminal__dot--red    { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green  { background: #28c840; }
.terminal__title {
    margin-left: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.terminal__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.msg__avatar {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #333;
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}
.msg__avatar--bot {
    background: var(--accent);
    color: #fff;
}
.msg__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.msg__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}
.msg__name--user {
    color: var(--text-dim);
}
.msg__text {
    font-size: 14px;
    color: var(--text);
    font-family: var(--mono);
    font-size: 13px;
}
.msg__embed {
    margin-top: 4px;
    padding: 10px 12px;
    background: rgba(88, 101, 242, .06);
    border-left: 3px solid var(--accent);
    border-radius: 0 6px 6px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.msg__embed--info {
    border-left-color: var(--blue);
    background: rgba(52, 152, 219, .06);
}
.msg__embed-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.msg__embed-desc {
    font-size: 13px;
    color: var(--text-dim);
}

/* --- CTA Banner --- */
.cta {
    padding: 80px 0;
    background: var(--accent);
}
.cta__inner {
    text-align: center;
}
.cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.cta p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
}
.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
    padding: calc(var(--nav-h) + 60px) 0 40px;
}
.page-hero h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.page-hero__desc {
    font-size: 16px;
    color: var(--text-dim);
}

/* --- Commands Page --- */
.filters {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.filter {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--text-dim);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: all .15s;
}
.filter:hover {
    color: var(--text);
    border-color: #333;
}
.filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.cmd-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cmd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: all .15s;
}
.cmd:hover {
    border-color: var(--border);
    background: var(--bg-hover);
}
.cmd.hidden { display: none; }
.cmd__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 200px;
}
.cmd__name {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: none;
    padding: 0;
}
.cmd__tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
}
.cmd__tag--red    { background: rgba(231,76,60,.1);  color: var(--red); }
.cmd__tag--blue   { background: rgba(52,152,219,.1); color: var(--blue); }
.cmd__tag--yellow { background: rgba(241,196,15,.1); color: var(--yellow); }
.cmd__desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}
@media (max-width: 600px) {
    .cmd {
        flex-direction: column;
        gap: 8px;
    }
    .cmd__left { min-width: auto; }
}

.cmd-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 24px;
    background: rgba(88, 101, 242, .06);
    border: 1px solid rgba(88, 101, 242, .15);
    border-radius: var(--radius);
}
.cmd-info > i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}
.cmd-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.cmd-info p {
    font-size: 14px;
    color: var(--text-dim);
}
.cmd-info a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .15s;
}
.contact-card:hover {
    border-color: #333;
    background: var(--bg-hover);
}
.contact-card:hover .contact-card__arrow {
    transform: translateX(3px);
}
.contact-card > i:first-child {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: var(--text-dim);
}
.contact-card div {
    flex: 1;
}
.contact-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-card p {
    font-size: 13px;
    color: var(--text-dim);
}
.contact-card__arrow {
    color: var(--text-muted);
    font-size: 13px;
    transition: transform .2s;
}

/* --- Form --- */
.form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}
.form__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}
.form__group {
    margin-bottom: 16px;
}
.form__group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 6px;
}
.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    transition: border-color .15s;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__group select { cursor: pointer; }
.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    background: rgba(46, 204, 113, .08);
    border: 1px solid rgba(46, 204, 113, .2);
    border-radius: 8px;
    font-size: 14px;
    color: var(--green);
}
.form__success.show { display: flex; }
.form__success i { font-size: 18px; }

/* --- About Page --- */
.about-intro {
    max-width: 700px;
}
.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.about-text p {
    color: var(--text-dim);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 15px;
}

/* --- Team Cards --- */
.team-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.team-card__avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(88, 101, 242, .1);
    color: var(--accent);
    border-radius: 14px;
    font-size: 22px;
}
.team-card__avatar--alt {
    background: rgba(155, 89, 182, .1);
    color: var(--purple);
}
.team-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.team-card__role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-family: var(--mono);
}
.team-card p:last-child {
    font-size: 14px;
    color: var(--text-dim);
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 28px;
    max-width: 600px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline__item {
    position: relative;
    padding-bottom: 36px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
    position: absolute;
    left: -28px;
    top: 2px;
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
}
.timeline__item--done .timeline__dot {
    background: var(--green);
    border-color: var(--green);
}
.timeline__item--current .timeline__dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(88, 101, 242, .2);
}
.timeline__content {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.timeline__date {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.timeline__content h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 4px 0;
}
.timeline__content p {
    font-size: 14px;
    color: var(--text-dim);
}

/* --- 404 --- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--nav-h) 0;
}
.error-page__code {
    display: block;
    font-size: 100px;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.04em;
}
.error-page h1 {
    font-size: 24px;
    margin-bottom: 8px;
}
.error-page p {
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 32px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer__brand p {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 12px;
    max-width: 280px;
}
.footer__col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.footer__col a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    padding: 3px 0;
    transition: color .15s;
}
.footer__col a:hover { color: var(--text); }
.footer__socials {
    display: flex;
    gap: 10px;
}
.footer__socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dim);
    font-size: 15px;
    transition: all .15s;
}
.footer__socials a:hover {
    color: var(--text);
    border-color: #333;
}
.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer__top {
        grid-template-columns: 1fr;
    }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; justify-content: center; }
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Announcement banner (public) --- */
.announcement-banner {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    text-decoration: none;
    display: block;
    z-index: 10;
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.announcement-item {
    padding: .75rem 2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
}

.announcement-item--info    { background: rgba(88, 101, 242, .08); border-left: 3px solid #5865f2; }
.announcement-item--update  { background: rgba(87, 242, 135, .08); border-left: 3px solid #57f287; }
.announcement-item--warning { background: rgba(254, 231, 92, .08); border-left: 3px solid #fee75c; }
.announcement-item--event   { background: rgba(235, 69, 158, .08); border-left: 3px solid #eb459e; }

.announcement-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.announcement-item--info i    { color: #5865f2; }
.announcement-item--update i  { color: #57f287; }
.announcement-item--warning i { color: #fee75c; }
.announcement-item--event i   { color: #eb459e; }

.announcement-item strong {
    color: var(--text);
    margin-right: .35rem;
}

.announcement-item span {
    color: var(--dim);
}

.announcement-item__more {
    margin-left: auto;
    color: var(--dim);
    font-size: .8rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s;
}

.announcement-banner:hover .announcement-item__more {
    color: var(--accent);
}

/* --- Public announcements page --- */
.annonces-public {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.annonce-public {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 3px solid var(--border);
    transition: border-color .2s;
}

.annonce-public:hover {
    border-color: var(--accent);
}

.annonce-public--info    { border-left-color: #5865f2; }
.annonce-public--update  { border-left-color: #57f287; }
.annonce-public--warning { border-left-color: #fee75c; }
.annonce-public--event   { border-left-color: #eb459e; }

.annonce-public__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .7rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: .75rem;
}

.annonce-public--info .annonce-public__badge    { background: rgba(88, 101, 242, .12); color: #5865f2; }
.annonce-public--update .annonce-public__badge  { background: rgba(87, 242, 135, .12); color: #57f287; }
.annonce-public--warning .annonce-public__badge { background: rgba(254, 231, 92, .12); color: #fee75c; }
.annonce-public--event .annonce-public__badge   { background: rgba(235, 69, 158, .12); color: #eb459e; }

.annonce-public__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .5rem;
}

.annonce-public__content {
    color: var(--dim);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: .75rem;
}

.annonce-public__date {
    color: var(--dim);
    font-size: .8rem;
    opacity: .7;
}

.annonce-public__date i {
    margin-right: .25rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--dim);
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: .4;
}

.empty-state h3 {
    color: var(--text);
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.empty-state p {
    font-size: .9rem;
}
