@font-face {
    font-family: 'DearScript';
    src: url('/assets/fonts/DearScript.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #e94040;
    --color-primary-dark: #c22f2f;
    --color-secondary: #1e2127;
    --color-background: #0f1115;
    --color-surface: #171b22;
    --color-accent: #f5f7fa;
    --color-muted: #9aa0b5;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-background);
    color: var(--color-accent);
    line-height: 1.6;
}

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

a:hover,
a:focus {
    text-decoration: underline;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: rgba(15, 17, 21, 0.94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--color-accent);
}

.main-nav button.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    color: var(--color-accent);
    padding: 0.4rem 0.75rem;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 500;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--color-accent);
}

.hero {
    padding: 6rem 0 5rem;
    background: radial-gradient(circle at top left, rgba(233, 64, 64, 0.25), transparent 55%),
                linear-gradient(120deg, rgba(30, 33, 39, 0.8), rgba(15, 17, 21, 0.85) 55%);
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-muted);
}

.hero-card {
    background-color: rgba(23, 27, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-card ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.hero-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.hero-card span {
    color: var(--color-muted);
}

.hero-note {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(233, 64, 64, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-accent);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-accent);
}

.btn-light {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.section.alt {
    background-color: var(--color-surface);
}

.section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    letter-spacing: 0.08em;
    margin: 0 0 0.75rem;
}

.section-header p {
    color: var(--color-muted);
    margin: 0.5rem 0 0;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.card {
    background-color: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.card h3 {
    margin-top: 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-muted);
}

.whitelist-page {
    background: linear-gradient(120deg, rgba(30, 33, 39, 0.96), rgba(15, 17, 21, 0.96));
    padding: 6rem 0 5rem;
}

.whitelist-page .container {
    width: min(90%, 880px);
}

.whitelist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: rgba(17, 19, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

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

.whitelist-form label {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-weight: 500;
}

.whitelist-form label span {
    color: var(--color-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.whitelist-form input,
.whitelist-form textarea {
    background-color: rgba(12, 14, 19, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--color-accent);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.whitelist-form input::placeholder,
.whitelist-form textarea::placeholder {
    color: rgba(154, 160, 181, 0.75);
}

.whitelist-form input:focus,
.whitelist-form textarea:focus {
    outline: none;
    border-color: rgba(233, 64, 64, 0.65);
    box-shadow: 0 0 0 3px rgba(233, 64, 64, 0.15);
}

.whitelist-form textarea {
    resize: vertical;
    min-height: 160px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-footer .btn {
    align-self: flex-start;
}

.form-footer .disclaimer {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.form-feedback {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.form-feedback h2 {
    margin: 0 0 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    font-size: 1.3rem;
}

.form-feedback ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-muted);
}

.form-feedback-error {
    background: rgba(179, 40, 40, 0.12);
    border: 1px solid rgba(233, 64, 64, 0.35);
}

.form-feedback-success {
    background: rgba(32, 128, 72, 0.18);
    border: 1px solid rgba(64, 200, 120, 0.25);
    color: #000000;
}

.faq {
    margin-top: 3rem;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.faq-list article {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-list article {
    background-color: rgba(17, 19, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-list h3 {
    margin-top: 0;
    font-family: 'Rajdhani', sans-serif;
}

@media (max-width: 960px) {
    .photo-frame {
        position: relative;
        top: auto;
        right: auto;
        width: min(220px, 58vw);
        height: auto;
        aspect-ratio: 7 / 9;
        margin: 1rem auto 0;
    }

    .photo-frame img {
        height: 100%;
    }

    .photo-frame .carimbo {
        top: -14px;
        right: -14px;
        width: clamp(80px, 22vw, 110px);
    }
}

.whitelist-legacy {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.form-feedback.legacy {
    width: min(90%, 880px);
    margin: 0 auto;
}

#papel {
    position: relative;
    width: min(90%, 880px);
    background: linear-gradient(180deg, rgba(248, 242, 225, 0.96), rgba(237, 228, 206, 0.96));
    color: #2f2515;
    padding: clamp(1.8rem, 4vw, 2.8rem);
    border-radius: 14px;
    border: 1px solid rgba(101, 72, 37, 0.3);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.4);
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

#papel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        rgba(0, 0, 0, 0.025) 0,
        rgba(0, 0, 0, 0.025) 1px,
        transparent 1px,
        transparent 28px
    );
    opacity: 0.45;
}

#papel form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.centralizado {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: rgba(39, 28, 17, 0.85);
}

.photo-frame {
    position: absolute;
    top: clamp(5rem, 12vw, 8rem);
    right: clamp(1.4rem, 3vw, 2.2rem);
    width: 140px;
    height: 180px;
    border: 3px solid rgba(38, 28, 16, 0.4);
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-frame .carimbo {
    position: absolute;
    top: -18px;
    right: -18px;
    width: clamp(90px, 12vw, 120px);
    opacity: 0.28;
    transform: rotate(-8deg);
    pointer-events: none;
}

.photo-frame .carimbo img {
    width: 100%;
    height: auto;
    display: block;
}

.papel-field {
    font-weight: 600;
    letter-spacing: 0.08em;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field-hint {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(47, 37, 26, 0.6);
}

.field-error {
    margin: 0;
    font-size: 0.82rem;
    color: #b03a3a;
}

#papel input,
#papel select {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    border: none;
    border-bottom: 1px solid rgba(54, 39, 24, 0.45);
    border-radius: 0;
    background: transparent;
    color: #2f2515;
    transition: border-color 0.2s ease;
}

#papel input:focus,
#papel select:focus {
    outline: none;
    border-bottom-color: rgba(128, 67, 28, 0.85);
}

#papel textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(54, 39, 24, 0.35);
    border-radius: 8px;
    background: repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 22px,
            rgba(54, 39, 24, 0.12) 22px,
            rgba(54, 39, 24, 0.12) 24px
        );
    color: #2f2515;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#papel textarea:focus {
    outline: none;
    border-color: rgba(128, 67, 28, 0.85);
    box-shadow: 0 0 0 3px rgba(128, 67, 28, 0.18);
}

#papel input::placeholder,
#papel textarea::placeholder,
#papel select::placeholder {
    color: rgba(47, 37, 26, 0.4);
}

.formularios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.formularios label {
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
}

.formularios input,
.formularios select {
    margin-top: 0.45rem;
}

.formularios span {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.85rem;
}

.papel-textarea {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1.2rem;
}

.papel-textarea label {
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.papel-textarea label span {
    font-size: 0.78rem;
    color: rgba(47, 37, 26, 0.6);
    font-weight: 500;
}

.papel-textarea textarea {
    min-height: 160px;
    resize: vertical;
}

.word-counter {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(47, 37, 26, 0.65);
}

.assinatura {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.12em;
    margin-top: 2rem;
}

.assinatura span:last-child {
    min-height: 1.5rem;
    border-bottom: 1px solid rgba(47, 37, 26, 0.5);
    display: inline-block;
    padding: 0.3rem 0;
    min-width: 160px;
    font-family: 'DearScript', 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    transform: rotate(-1deg);
    color: rgba(47, 37, 26, 0.9);
}

.submit-area {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
}

.papel-submit {
    background: none;
    border: none;
    color: #1d1610;
    font-weight: 700;
    letter-spacing: 0.22em;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    transition: transform 0.2s ease;
}

.papel-submit:hover,
.papel-submit:focus {
    transform: translateY(-2px);
}

.account-page {
    background: radial-gradient(circle at top, rgba(233, 64, 64, 0.18), transparent 55%),
                linear-gradient(145deg, rgba(26, 30, 38, 0.92), rgba(36, 41, 52, 0.88));
    color: rgba(245, 247, 250, 0.9);
}

.account-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.account-header h1 {
    margin: 0.35rem 0 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    font-size: clamp(2.1rem, 3.5vw, 2.8rem);
}

.account-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: rgba(245, 247, 250, 0.7);
    font-size: 0.95rem;
}

.account-meta span {
    color: rgba(245, 247, 250, 0.45);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    display: block;
}

.account-status {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: rgba(17, 19, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 260px;
    text-align: right;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.status-aprovado {
    background: rgba(64, 200, 120, 0.18);
    color: #9fccb1;
}

.status-pendente {
    background: rgba(233, 191, 64, 0.18);
    color: #e9bf40;
}

.status-reprovado {
    background: rgba(233, 64, 64, 0.18);
    color: #f29191;
}

.account-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.overview-card {
    background-color: rgba(17, 20, 27, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
}

.overview-card h2 {
    margin-top: 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.overview-card ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.overview-card ul li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: rgba(245, 247, 250, 0.55);
    font-size: 0.95rem;
}

.overview-card ul strong {
    color: #f5f7fa;
    font-size: 1.05rem;
}

.checklist li {
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.4;
}

.checklist li::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid rgba(245, 247, 250, 0.4);
    background-color: transparent;
}

.checklist li[data-complete="true"]::before {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: transparent;
    box-shadow: 0 0 12px rgba(233, 64, 64, 0.35);
}

.quick-actions {
    display: grid;
    gap: 0.75rem;
}

.quick-actions a {
    color: rgba(245, 247, 250, 0.75);
    font-weight: 500;
    border-bottom: 1px solid rgba(245, 247, 250, 0.08);
    padding-bottom: 0.3rem;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.panel {
    background-color: rgba(17, 20, 27, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
}

.panel h2 {
    margin-top: 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.character-list,
.notification-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.character-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1.2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: rgba(12, 14, 20, 0.85);
    align-items: center;
}

.character-list li[data-status="livre"] {
    opacity: 0.65;
}

.character-list strong {
    font-size: 1rem;
}

.character-list span {
    font-size: 0.85rem;
    color: rgba(245, 247, 250, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.character-list small {
    display: block;
    color: rgba(245, 247, 250, 0.45);
    font-size: 0.8rem;
}

.character-action {
    color: rgba(245, 247, 250, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
}

.notification-list li {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    background: rgba(12, 14, 20, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(245, 247, 250, 0.5);
}

.notification-type span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.notification-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(245, 247, 250, 0.55);
}

.account-footer {
    margin-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.footer-grid article {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-grid p {
    color: rgba(245, 247, 250, 0.6);
}

.footer-grid .btn {
    align-self: flex-start;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.vintage-newspaper {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #f5f0e3;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 12px),
                      repeating-linear-gradient(0deg, rgba(0,0,0,0.015) 0, rgba(0,0,0,0.015) 1px, transparent 1px, transparent 10px);
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #111;
}

.vintage-newspaper .paper-shell {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(253, 251, 245, 0.98), rgba(243, 238, 224, 0.96));
    border: 2px solid rgba(35, 31, 28, 0.55);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.8rem, 3vw, 3rem);
    position: relative;
    overflow: hidden;
}

.vintage-newspaper .paper-shell::before,
.vintage-newspaper .paper-shell::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(35, 31, 28, 0.18);
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.08);
}

.vintage-newspaper .paper-shell::after {
    inset: 30px 22px;
    border-width: 0 0 1px 0;
    border-color: rgba(35, 31, 28, 0.22);
    box-shadow: none;
}

.vintage-header {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: end;
    gap: clamp(1rem, 3vw, 2rem);
    border-bottom: 10px double #141212;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.vintage-masthead {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.18em;
}

.vintage-masthead h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    margin: 0;
    font-weight: 800;
    color: #111;
    word-spacing: 0.3em;
}

.vintage-masthead h2 {
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: rgba(70, 70, 70, 0.85);
}

.vintage-meta {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    color: rgba(17, 17, 17, 0.72);
}

.vintage-meta .separator {
    margin: 0 0.6rem;
}

.vintage-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.22em;
}

.vintage-actions .price {
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #111;
    padding: 0.35rem 0.75rem;
}

.vintage-actions .btn {
    border: 1px solid rgba(17, 17, 17, 0.45);
    background: linear-gradient(135deg, #b21f1f, #7a0f0f);
    color: #f5f0e3;
}

.vintage-empty {
    text-align: center;
    padding: 3rem;
    border: 2px dashed rgba(17, 17, 17, 0.3);
    background: rgba(250, 246, 236, 0.8);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vintage-empty .empty-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.vintage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.vintage-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vintage-article {
    border: 2px solid rgba(17, 17, 17, 0.5);
    padding: 1.8rem 2rem;
    background: repeating-linear-gradient(0deg, rgba(255, 253, 250, 0.96), rgba(255, 253, 250, 0.96) 24px, rgba(242, 236, 226, 0.96) 24px, rgba(242, 236, 226, 0.96) 48px);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vintage-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.vintage-article .headline {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 2px solid #111;
    padding-bottom: 0.6rem;
    margin: 0 0 1rem;
}

.vintage-article .subtitle {
    font-style: italic;
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.75);
    margin-bottom: 1rem;
}

.lead-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: rgba(17, 17, 17, 0.6);
    margin-bottom: 1.2rem;
}

.headline-image {
    margin: 0;
    border: 1px solid rgba(17, 17, 17, 0.35);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
}

.headline-image img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(105%);
    border: 1px solid rgba(17, 17, 17, 0.2);
}

.headline-image figcaption {
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(17, 17, 17, 0.65);
    margin-top: 0.4rem;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.85);
    text-align: justify;
    text-justify: inter-word;
}

.article-body p::first-letter {
    font-size: 1.45rem;
    font-weight: 600;
    margin-right: 0.2rem;
}

.vintage-secondary {
    border-top: 2px solid #111;
    padding-top: 1.2rem;
    cursor: pointer;
}

.vintage-secondary .secondary-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 0 0 0.35rem;
    letter-spacing: 0.06em;
}

.vintage-secondary .secondary-sub {
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.7);
    margin-bottom: 0.6rem;
}

.vintage-secondary .secondary-body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.78);
}

.secondary-price {
    margin-top: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.vintage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    border: 1px solid rgba(17, 17, 17, 0.4);
    padding: 1.2rem;
    background: rgba(250, 248, 240, 0.85);
}

.sidebar-box h5 {
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
}

.sidebar-date {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: rgba(17, 17, 17, 0.65);
    text-transform: uppercase;
}

.sidebar-spot {
    border: 1px solid rgba(17, 17, 17, 0.35);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
}

.sidebar-spot h6 {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.sidebar-spot p {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.spot-meta {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    color: rgba(17, 17, 17, 0.55);
    text-transform: uppercase;
}

.sidebar-price {
    border: 2px double rgba(17, 17, 17, 0.6);
    padding: 1.1rem;
    text-align: center;
    background: rgba(245, 241, 232, 0.95);
}

.sidebar-price span {
    display: block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.sidebar-price strong {
    display: block;
    font-size: 1.4rem;
    margin: 0.4rem 0;
}

.sidebar-price small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.vintage-footer {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(17, 17, 17, 0.45);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
}

@media (max-width: 900px) {
    .vintage-grid {
        grid-template-columns: 1fr;
    }

    .vintage-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vintage-actions {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .vintage-newspaper .paper-shell::before,
    .vintage-newspaper .paper-shell::after {
        inset: 6px;
    }

    .vintage-article,
    .vintage-secondary,
    .sidebar-spot {
        padding: 1.3rem;
    }
}
.admin-page {
    background: linear-gradient(160deg, rgba(16, 19, 26, 0.94), rgba(11, 14, 20, 0.96));
}

.admin-header {
    margin-bottom: 1.5rem;
}

.admin-filter {
    margin-bottom: 1.5rem;
}

.filter-form {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.filter-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.55);
}

.filter-form select {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(13, 16, 22, 0.85);
    color: rgba(245, 247, 250, 0.85);
}

.admin-table-wrapper {
    overflow: hidden;
}

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

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    color: rgba(245, 247, 250, 0.85);
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.admin-table th {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: rgba(245, 247, 250, 0.55);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.status-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.status-form select {
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(12, 14, 20, 0.85);
    color: rgba(245, 247, 250, 0.85);
}

.btn-small {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

@media (max-width: 768px) {
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-table {
        min-width: 640px;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background-color: rgba(23, 27, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-item h3 {
    margin-top: 0;
    font-family: 'Rajdhani', sans-serif;
}

.community-grid,
.whitelist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.community-card,
.stats-card {
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.stats-card ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.stats-card span {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-primary);
}

.cta {
    padding: 4rem 0;
    background: linear-gradient(120deg, var(--color-primary-dark), #722121);
    text-align: center;
}

.cta h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.cta p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer {
    padding: 3rem 0 2rem;
    background-color: #0b0d11;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h2,
.site-footer h3 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    margin-top: 0;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--color-muted);
}

.site-footer li + li {
    margin-top: 0.5rem;
}

.footer-copy {
    margin: 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

ol {
    padding-left: 1.4rem;
    color: var(--color-muted);
}

@media (max-width: 768px) {
    .main-nav button.nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .main-nav ul {
        position: absolute;
        top: 70px;
        right: 4%;
        flex-direction: column;
        background-color: rgba(13, 15, 20, 0.95);
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: min(220px, 92vw);
        display: none;
    }

    .main-nav ul[data-open="true"] {
        display: flex;
    }
}

@media (max-width: 640px) {
    .whitelist-form {
        padding: 1.5rem;
    }

    .form-grid {
        gap: 1rem;
    }

    .whitelist-form label span {
        font-size: 0.85rem;
        letter-spacing: 0.06em;
    }

    #papel {
        padding: 1.6rem;
    }

    .photo-frame {
        position: relative;
        top: auto;
        right: auto;
        width: min(220px, 70vw);
        height: auto;
        aspect-ratio: 7 / 9;
        margin: 1rem auto;
    }

    .photo-frame .carimbo {
        top: -10px;
        right: -10px;
        width: clamp(68px, 28vw, 96px);
        opacity: 0.22;
        transform: rotate(-6deg);
    }
}

@media (min-width: 768px) {
    .form-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .form-footer .btn {
        align-self: auto;
    }
}

/* Páginas de membros e perfil */
.members-page,
.profile-page {
    background: linear-gradient(160deg, rgba(16, 19, 26, 0.94), rgba(11, 14, 20, 0.96));
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(245, 247, 250, 0.7);
    font-size: 1.1rem;
}

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

.member-card {
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.member-card:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 64, 64, 0.3);
}

.member-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
}

.member-avatar {
    text-align: center;
    margin-bottom: 1rem;
}

.member-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.member-info h3 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

.member-origin {
    color: rgba(245, 247, 250, 0.7);
    font-size: 0.9rem;
    margin: 0 0 0.3rem;
    text-align: center;
}

.member-discord {
    color: rgba(245, 247, 250, 0.5);
    font-size: 0.8rem;
    margin: 0 0 0.8rem;
    text-align: center;
}

.member-date {
    display: block;
    color: rgba(245, 247, 250, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(245, 247, 250, 0.6);
}

/* Página de perfil */
.profile-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(233, 64, 64, 0.3);
}

.profile-info h1 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
}

.profile-discord {
    color: rgba(245, 247, 250, 0.7);
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.profile-status {
    color: rgba(245, 247, 250, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-section {
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.profile-section h2 {
    margin: 0 0 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.character-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-size: 0.8rem;
    color: rgba(245, 247, 250, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1rem;
    color: rgba(245, 247, 250, 0.9);
    font-weight: 500;
}

.character-text {
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.8);
}

.character-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .character-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Sistema de Facções */
.factions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.faction-card {
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.faction-card:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 64, 64, 0.3);
}

.faction-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.faction-header h3 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
}

.faction-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.faction-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.faction-title-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faction-tag {
    background: rgba(233, 64, 64, 0.2);
    color: var(--color-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faction-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.faction-type {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faction-type-militar { background: rgba(64, 120, 200, 0.2); color: #6bb6ff; }
.faction-type-civil { background: rgba(64, 200, 120, 0.2); color: #40c878; }
.faction-type-bandidos { background: rgba(200, 64, 64, 0.2); color: #ff6b6b; }
.faction-type-comerciantes { background: rgba(200, 180, 64, 0.2); color: #ffd93d; }
.faction-type-outros { background: rgba(160, 160, 160, 0.2); color: #a0a0a0; }

.faction-members {
    color: rgba(245, 247, 250, 0.6);
    font-size: 0.85rem;
}

.faction-description {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.faction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faction-leader {
    font-size: 0.85rem;
    color: rgba(245, 247, 250, 0.7);
}

.faction-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Página de detalhes da facção */
.faction-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.faction-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.faction-content {
    display: grid;
    gap: 2rem;
}

.faction-info,
.faction-members-section {
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.faction-territory,
.faction-created {
    margin-top: 1rem;
    color: rgba(245, 247, 250, 0.7);
}

.members-list {
    display: grid;
    gap: 1rem;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.member-info {
    flex: 1;
}

.member-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.member-info small {
    color: rgba(245, 247, 250, 0.5);
    font-size: 0.8rem;
}

.member-role {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-role-lider { background: rgba(233, 64, 64, 0.2); color: var(--color-primary); }
.member-role-vice-lider { background: rgba(233, 120, 64, 0.2); color: #ff8c42; }
.member-role-membro { background: rgba(64, 200, 120, 0.2); color: #40c878; }
.member-role-recruta { background: rgba(160, 160, 160, 0.2); color: #a0a0a0; }

/* Dashboard da facção */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background-color: rgba(23, 27, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.faction-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.leader-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.member-actions {
    margin-left: auto;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.application-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.application-info {
    flex: 1;
}

.application-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.application-actions {
    margin-left: auto;
    align-self: center;
}

.member-actions select {
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: rgba(245, 247, 250, 0.85);
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .faction-detail-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .faction-info-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-actions {
        flex-direction: column;
    }
}

/* Novo Layout da Página Minha Conta */
.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.profile-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.profile-card {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(233, 64, 64, 0.3);
    margin-bottom: 1rem;
}

.profile-card h2 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
}

.profile-discord {
    color: rgba(245, 247, 250, 0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.profile-status {
    margin-bottom: 1.5rem;
}

.profile-faction {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
}

.profile-faction h3 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: rgba(245, 247, 250, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faction-link {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.faction-tag {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    margin: 0 0 0.5rem;
}

.dashboard-header p {
    color: rgba(245, 247, 250, 0.7);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(233, 64, 64, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: bold;
}

.stat-info h3 {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    color: rgba(245, 247, 250, 0.7);
}

.stat-info p {
    margin: 0;
    font-weight: 600;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.dashboard-card h2 {
    margin: 0 0 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
}

.progress-item.completed {
    background: rgba(64, 200, 120, 0.1);
    border: 1px solid rgba(64, 200, 120, 0.2);
}

.progress-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.progress-item.completed .progress-icon {
    background: rgba(64, 200, 120, 0.2);
    color: #40c878;
}

.progress-item.pending .progress-icon {
    background: rgba(160, 160, 160, 0.2);
    color: #a0a0a0;
}

.quick-actions-grid {
    display: grid;
    gap: 1rem;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-card:hover {
    background: rgba(233, 64, 64, 0.1);
    border-color: rgba(233, 64, 64, 0.3);
    transform: translateY(-1px);
}

.action-icon {
    font-size: 1.5rem;
}

.action-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.action-info p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(245, 247, 250, 0.6);
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
}

.detail-label {
    color: rgba(245, 247, 250, 0.7);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 500;
    text-align: right;
}

.full-width-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.character-slots {
    display: grid;
    gap: 1rem;
}

.character-slot {
    padding: 1.5rem;
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.character-slot.ativo {
    border-color: rgba(64, 200, 120, 0.3);
    background: rgba(64, 200, 120, 0.05);
}

.character-slot.pendente {
    border-color: rgba(233, 180, 64, 0.3);
    background: rgba(233, 180, 64, 0.05);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.slot-status {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(160, 160, 160, 0.2);
    color: #a0a0a0;
}

.character-slot.ativo .slot-status {
    background: rgba(64, 200, 120, 0.2);
    color: #40c878;
}

.character-slot.pendente .slot-status {
    background: rgba(233, 180, 64, 0.2);
    color: #e9b440;
}

.slot-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slot-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.stat-label {
    color: rgba(245, 247, 250, 0.6);
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.notification-item {
    padding: 1rem;
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.notification-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.notification-date {
    font-size: 0.8rem;
    color: rgba(245, 247, 250, 0.5);
}

.notification-title {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.notification-status {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.notification-status.status-aprovado {
    background: rgba(64, 200, 120, 0.2);
    color: #40c878;
}

.notification-status.status-pendente {
    background: rgba(233, 180, 64, 0.2);
    color: #e9b440;
}

.notification-status.status-atenção {
    background: rgba(233, 64, 64, 0.2);
    color: var(--color-primary);
}

.help-section {
    grid-column: 1 / -1;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.help-item {
    padding: 1.5rem;
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.help-item h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.help-item p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: rgba(245, 247, 250, 0.7);
    line-height: 1.5;
}

.full-width {
    width: 100%;
}

/* Efeitos de hover para cards da página Minha Conta */
.overview-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 64, 64, 0.2);
}

.account-grid .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.account-grid .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 64, 64, 0.2);
}

.account-footer {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.account-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 64, 64, 0.2);
}

/* Estilo Polaroid para página de membros */
.polaroid-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}

.polaroid {
    background: #fff;
    padding: 1rem 1rem 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(var(--rotation));
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.polaroid img {
    width: var(--size, 120px);
    height: var(--size, 120px);
    object-fit: cover;
    display: block;
}

.polaroid-name {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DearScript', cursive;
    color: #333;
    font-size: 0.9rem;
    text-align: center;
    width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Estilos para comentários */
.comment-form {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.comment-form textarea {
    width: 100%;
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1rem;
    color: var(--color-accent);
    font-size: 0.95rem;
    line-height: 1.5;
    resize: vertical;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-color: rgba(233, 64, 64, 0.5);
    box-shadow: 0 0 0 3px rgba(233, 64, 64, 0.1);
}

.comment-form textarea::placeholder {
    color: rgba(245, 247, 250, 0.4);
}

.comment-notice {
    text-align: center;
    color: rgba(245, 247, 250, 0.6);
    font-style: italic;
    margin-bottom: 2rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-date {
    font-size: 0.8rem;
    color: rgba(245, 247, 250, 0.5);
}

.comment-delete {
    background: none;
    border: none;
    color: rgba(233, 64, 64, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.comment-delete:hover {
    background: rgba(233, 64, 64, 0.1);
    color: var(--color-primary);
}

/* Modal de confirmação */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-content h3 {
    margin: 0 0 1rem;
    color: var(--color-primary);
    font-family: 'Rajdhani', sans-serif;
}

.modal-content p {
    margin: 0 0 2rem;
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.no-manage {
    font-size: 0.8rem;
    color: rgba(245, 247, 250, 0.5);
    font-style: italic;
    padding: 0.25rem 0.5rem;
}

/* Página da Facção - Estilo DayZ */
.faction-page {
    background: linear-gradient(135deg, rgba(15, 17, 21, 0.95), rgba(30, 33, 39, 0.9));
}

.faction-hero {
    position: relative;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.faction-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 64, 64, 0.1), rgba(30, 33, 39, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faction-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.faction-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.faction-logo-container {
    flex-shrink: 0;
}

.faction-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(233, 64, 64, 0.3);
    object-fit: cover;
}

.faction-title h1 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.faction-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faction-tag {
    background: rgba(233, 64, 64, 0.2);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.faction-type {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

.faction-type-stats {
    text-align: center;
    margin-bottom: 1rem;
}

.faction-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(245, 247, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faction-cta {
    text-align: center;
    margin-top: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.faction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faction-about,
.faction-roster {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.faction-description {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(245, 247, 250, 0.9);
}

.faction-territory,
.faction-founded {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
}

.faction-territory h3,
.faction-founded h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--color-primary);
}

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

.survivor-card {
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.survivor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 64, 64, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.survivor-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.survivor-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: border-color 0.2s ease;
}

.survivor-avatar.online img {
    border-color: #40c878;
}

.survivor-avatar.offline img {
    border-color: #e94040;
}

.profile-avatar.online img {
    border-color: #40c878;
}

.profile-avatar.offline img {
    border-color: #e94040;
}



.survivor-info h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.survivor-role {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(233, 64, 64, 0.1);
    color: var(--color-primary);
}

.empty-roster {
    text-align: center;
    padding: 3rem;
    color: rgba(245, 247, 250, 0.6);
}

/* Página de Facções - Header com botão */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.page-title h1 {
    margin: 0 0 0.5rem;
}

.page-title p {
    margin: 0;
    color: rgba(245, 247, 250, 0.7);
}

.page-actions {
    flex-shrink: 0;
}

/* Cards de Facções Modernos */
.faction-card-modern {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faction-card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 64, 64, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.faction-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faction-logo-container {
    flex-shrink: 0;
}

.faction-card-modern .faction-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 2px solid rgba(233, 64, 64, 0.2);
    object-fit: cover;
}

.faction-title-section h3 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--color-accent);
}

.faction-title-section {
    flex: 1;
    min-width: 0;
}

.faction-name-line {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.faction-name-line h3 {
    margin: 0;
    display: inline;
}

.faction-type-line {
    display: block;
    width: 100%;
    clear: both;
}

.faction-card-modern .faction-tag {
    background: rgba(233, 64, 64, 0.15);
    color: var(--color-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faction-card-modern .faction-type {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faction-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.4);
    border-radius: 8px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(245, 247, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.faction-card-modern .faction-description {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.faction-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faction-leader {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.leader-label {
    font-size: 0.7rem;
    color: rgba(245, 247, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.leader-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .faction-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .faction-stats {
        justify-content: center;
    }
    
    .faction-card-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .faction-stats {
        gap: 2rem;
    }
    
    .faction-grid {
        grid-template-columns: 1fr;
    }
    
    .survivors-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.comment-text {
    margin: 0;
    line-height: 1.5;
}

.no-comments {
    text-align: center;
    color: rgba(245, 247, 250, 0.6);
    font-style: italic;
}

.account-status-extended {
    flex: 1;
    max-width: none;
    text-align: center;
}

.user-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.account-header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-grid,
    .full-width-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Events Page */
.events-page {
    background: linear-gradient(160deg, rgba(16, 19, 26, 0.94), rgba(11, 14, 20, 0.96));
    min-height: 100vh;
    padding: 2rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Event Card Modern Layout */
.event-card-modern {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.event-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-date-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 70px;
    flex-shrink: 0;
}

.event-day {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.event-month {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.2rem;
}

.event-title-section {
    flex: 1;
    min-width: 0;
}

.event-title-section h3 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--color-accent);
}

.event-type-line {
    display: block;
    width: 100%;
}

.event-status {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    font-weight: 600;
}

.event-status.status-cancelado {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.event-status.status-finalizado {
    background: rgba(158, 158, 158, 0.15);
    color: #9e9e9e;
}

.event-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.4);
    border-radius: 8px;
}

.event-description {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.event-location-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-label {
    font-size: 0.7rem;
    color: rgba(245, 247, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.location-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.event-status {
    flex-shrink: 0;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-time,
.event-location,
.event-participants {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.detail-icon {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.event-date {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    min-width: 70px;
    height: fit-content;
}

.event-day {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.event-month {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.2rem;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    color: #4CAF50;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.event-time, .event-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.event-participants {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

/* Event Detail Page */
.event-detail-page {
    background: linear-gradient(160deg, rgba(16, 19, 26, 0.94), rgba(11, 14, 20, 0.96));
    min-height: 100vh;
    padding: 2rem 0;
}

.event-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.event-detail-info h1 {
    color: #4CAF50;
    margin: 0 0 1rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-datetime, .event-location, .event-creator {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-status-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 12px;
    min-width: 150px;
}

.participants-info {
    margin-top: 1rem;
}

.participants-count {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

.participants-info small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.event-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-description, .event-participation {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.event-description h2, .event-participation h2 {
    color: #4CAF50;
    margin: 0 0 1rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.description-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.event-participation p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
    
    .event-meta {
        justify-content: center;
        text-align: center;
    }
    
    .event-detail-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Event Hero Section */
.event-hero {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.event-badge {
    margin-bottom: 1rem;
}

.event-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 2rem 0;
    color: #4CAF50;
    font-family: 'Rajdhani', sans-serif;
}

.event-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.summary-icon {
    font-size: 1.2rem;
}

/* Event Main Content */
.event-main {
    margin-bottom: 3rem;
}

.event-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.event-description {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.event-description h2 {
    color: #4CAF50;
    margin: 0 0 1.5rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.description-text {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Event Sidebar */
.event-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.event-info-card h3 {
    color: #4CAF50;
    margin: 0 0 1.5rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.info-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.info-value.status-ativo {
    color: #4CAF50;
}

.info-value.status-cancelado {
    color: #f44336;
}

.info-value.status-finalizado {
    color: #9e9e9e;
}

/* Participation Section */
.participation-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.participation-section h4 {
    color: #4CAF50;
    margin: 0 0 1rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.participation-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .event-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-hero {
        padding: 2rem 1rem;
    }
    
    .event-hero h1 {
        font-size: 2rem;
    }
    
    .event-summary {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Admin Events Dashboard */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.admin-card {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.admin-card h2 {
    margin: 0 0 1.5rem 0;
    color: #4CAF50;
    font-family: 'Rajdhani', sans-serif;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    background: rgba(12, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem;
    color: white;
    font-size: 0.9rem;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-info h4 {
    margin: 0 0 0.25rem 0;
    color: white;
}

.event-info small {
    color: rgba(255, 255, 255, 0.6);
}

.event-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-danger {
    background: #e94040;
    color: white;
}

.btn-danger:hover {
    background: #d63031;
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* NYT Style Newspaper */
.newspaper-page {
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #121212;
}

.newspaper-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}





.newspaper-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.newspaper-masthead {
    text-align: left;
    flex: 1;
}

.newspaper-masthead h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #121212;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.newspaper-subtitle {
    font-size: 0.75rem;
    color: #666;
    margin: 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.newspaper-motto {
    font-style: italic;
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 400;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

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

.newspaper-masthead-small {
    text-align: center;
    margin-bottom: 2rem;
}

.newspaper-masthead-small h1,
.newspaper-masthead-small h2 {
    font-family: 'Old English Text MT', 'Times New Roman', serif;
    color: #2c1810;
    margin: 0 0 0.5rem;
}

.vintage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 2rem 3rem;
    background: #f5f5dc;
}

.vintage-main {
    animation: slideInLeft 1s ease-out 0.8s both;
}

.vintage-sidebar {
    animation: slideInRight 1s ease-out 1.2s both;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.vintage-article {
    border-bottom: 2px solid #8b4513;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vintage-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.vintage-article:hover::before {
    left: 100%;
}

.vintage-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.newspaper-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b, #d4af37);
}

.newspaper-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: #b8860b;
}

.ad-category {
    background: #326891;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.75rem;
    border-radius: 2px;
}

.ad-title {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    color: #121212;
    margin: 0 0 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ad-preview {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-family: 'Georgia', serif;
}

.ad-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e2e2;
    font-size: 0.8rem;
}

.ad-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
}

.ad-price {
    background: #326891;
    color: white;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2px;
}

.ad-date {
    font-size: 0.75rem;
    color: #999;
    font-family: 'Arial', sans-serif;
    position: static;
}

.newspaper-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(245, 247, 250, 0.6);
}

.newspaper-empty h3 {
    color: #121212;
    margin-bottom: 1rem;
}

/* Newspaper Detail Page */
.newspaper-detail-page {
    position: relative;
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 18% 22%, rgba(212, 175, 55, 0.14), transparent 46%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.1), transparent 52%),
        linear-gradient(135deg, rgba(20, 22, 28, 0.97), rgba(12, 14, 19, 0.95));
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #120601;
}

.newspaper-detail-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(212, 175, 55, 0.18), transparent 60%);
    pointer-events: none;
}

.newspaper-detail-page .container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2.6rem, 5vw, 3.6rem) clamp(1.8rem, 4vw, 3.2rem);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(244, 239, 228, 0.96) 100%);
    border: 1px solid rgba(64, 21, 1, 0.22);
    border-radius: 22px;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.newspaper-detail-page .container::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(64, 21, 1, 0.2);
    border-radius: 16px;
    pointer-events: none;
}

.newspaper-detail-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: end;
    padding: clamp(1.25rem, 3vw, 1.8rem);
    margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(64, 21, 1, 0.16);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
}

.newspaper-detail-header::after {
    content: '';
    grid-column: 1 / -1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(64, 21, 1, 0.25) 18%, rgba(64, 21, 1, 0.25) 82%, transparent 100%);
    margin-top: clamp(1.2rem, 3vw, 1.6rem);
}

.back-link {
    align-self: flex-start;
    color: rgba(18, 6, 1, 0.78);
    text-decoration: none;
    letter-spacing: 0.12em;
    border: 1px solid rgba(64, 21, 1, 0.28);
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.back-link:hover,
.back-link:focus {
    background: rgba(64, 21, 1, 0.08);
    border-color: rgba(64, 21, 1, 0.45);
    text-decoration: none;
}

.newspaper-masthead-small {
    text-align: right;
}

.newspaper-masthead-small h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    letter-spacing: 0.24em;
    color: #120601;
}

.newspaper-masthead-small span {
    display: block;
    color: rgba(18, 6, 1, 0.62);
    margin-top: 0.5rem;
}

.newspaper-article {
    position: relative;
    border: 1px solid rgba(64, 21, 1, 0.22);
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.6rem);
    background: repeating-linear-gradient(0deg, rgba(255, 252, 247, 0.98) 0 28px, rgba(243, 238, 228, 0.96) 28px 56px);
    box-shadow: inset 0 0 0 1px rgba(64, 21, 1, 0.1), 0 18px 40px rgba(0, 0, 0, 0.15);
    color: #120601;
}

.article-header {
    border-bottom: 1px solid rgba(64, 21, 1, 0.24);
    padding-bottom: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: clamp(1.6rem, 3vw, 2.1rem);
}

.article-body-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.article-media {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(18, 6, 1, 0.04);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid rgba(64, 21, 1, 0.12);
}

.article-media img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(64, 21, 1, 0.32);
    border-radius: 10px;
    filter: grayscale(100%) contrast(108%);
    margin-bottom: 0.75rem;
    max-height: 400px;
    object-fit: cover;
}

.article-media figcaption {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(18, 6, 1, 0.58);
    text-align: center;
}

.article-category {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(18, 6, 1, 0.58);
    margin-bottom: 0.9rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #120601;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.6rem);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.article-author .author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(64, 21, 1, 0.32);
}

.article-author .author-info strong {
    display: block;
    font-size: 1rem;
}

.article-author .author-info span {
    color: rgba(18, 6, 1, 0.55);
    font-size: 0.82rem;
}

.article-price {
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(64, 21, 1, 0.16);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.14);
}

.article-content {
    font-size: 1.08rem;
    line-height: 1.78;
    color: rgba(18, 6, 1, 0.9);
    text-align: justify;
    flex: 1;
}

.article-content::first-letter {
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 0.22rem;
}

.article-contact {
    border-top: 1px dashed rgba(64, 21, 1, 0.24);
    margin-top: clamp(1.8rem, 4vw, 2.6rem);
    padding-top: clamp(1.4rem, 3vw, 1.9rem);
    font-size: 0.96rem;
    color: rgba(18, 6, 1, 0.88);
}

.article-contact h3 {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.92rem;
}

.article-footer {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: 1.3rem;
    border-top: 1px dashed rgba(64, 21, 1, 0.24);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.84rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(18, 6, 1, 0.62);
}

.article-disclaimer {
    font-style: italic;
}

@media (max-width: 680px) {
    .newspaper-detail-header {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .newspaper-article {
        padding: 1.5rem;
    }
}
/* Create Ad Page */
.create-ad-page {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12), transparent 45%),
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.08), transparent 50%),
        linear-gradient(130deg, rgba(16, 18, 23, 0.94), rgba(11, 13, 17, 0.97));
    min-height: 100vh;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.create-ad-page .container {
    width: min(92%, 880px);
    position: relative;
    z-index: 1;
}

.create-ad-page .newspaper-header {
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(254, 252, 247, 0.94);
    border: 1px solid rgba(44, 30, 19, 0.18);
    border-radius: 18px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.create-ad-page .newspaper-masthead-small {
    text-align: left;
}

.create-ad-page .newspaper-masthead-small h1 {
    font-family: 'Old English Text MT', 'Georgia', serif;
    font-size: clamp(2rem, 4.2vw, 2.6rem);
    color: #120601;
    margin-bottom: 0.35rem;
}

.create-ad-page .newspaper-masthead-small p {
    margin: 0;
    color: rgba(18, 6, 1, 0.82);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.create-ad-page .back-link {
    margin-left: auto;
    color: rgba(44, 30, 19, 0.8);
    border-color: rgba(44, 30, 19, 0.25);
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.12em;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.create-ad-page .back-link:hover,
.create-ad-page .back-link:focus {
    background: rgba(44, 30, 19, 0.08);
    border-color: rgba(44, 30, 19, 0.5);
    text-decoration: none;
}

.create-ad-page .newspaper-form {
    position: relative;
    background: linear-gradient(180deg, rgba(254, 252, 247, 0.98) 0%, rgba(244, 239, 228, 0.96) 100%);
    border: 1px solid rgba(44, 30, 19, 0.18);
    border-radius: 18px;
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    color: #120601;
}

.create-ad-page .newspaper-form::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(44, 30, 19, 0.18);
    border-radius: 12px;
    pointer-events: none;
}

.create-ad-page .ad-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.create-ad-page .ad-form label {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.create-ad-page .ad-form span {
    color: #120601;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.create-ad-page .ad-form input,
.create-ad-page .ad-form textarea,
.create-ad-page .ad-form select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(97, 57, 31, 0.25);
    border-radius: 8px;
    padding: 0.8rem 0.95rem;
    font-size: 1rem;
    color: #120601;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.create-ad-page .ad-form input:focus,
.create-ad-page .ad-form textarea:focus,
.create-ad-page .ad-form select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    background: #ffffff;
}

.create-ad-page .ad-form textarea {
    resize: vertical;
    min-height: 140px;
}

.create-ad-page .ad-form small {
    color: #401501;
}

.create-ad-page .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.create-ad-page .form-footer {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(44, 30, 19, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.create-ad-page .form-footer .btn {
    align-self: center;
    min-width: clamp(220px, 55%, 260px);
}

.create-ad-page .form-footer .disclaimer {
    color: rgba(18, 6, 1, 0.78);
    font-style: italic;
}

.create-ad-page .form-feedback {
    color: #120601;
    background: rgba(254, 252, 247, 0.9);
    border: 1px solid rgba(44, 30, 19, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.create-ad-page .form-feedback h2 {
    color: #120601;
}

.create-ad-page .form-feedback-success {
    background: rgba(37, 121, 75, 0.1);
    border-color: rgba(37, 121, 75, 0.3);
}

.create-ad-page .form-feedback-error {
    background: rgba(179, 40, 40, 0.12);
    border-color: rgba(179, 40, 40, 0.35);
}

@media (max-width: 720px) {
    .create-ad-page .newspaper-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .create-ad-page .back-link {
        margin-left: 0;
    }
}

@media (max-width: 540px) {
    .create-ad-page {
        padding-top: 2.5rem;
    }

    .create-ad-page .newspaper-form::before {
        inset: 12px;
    }
}

/* Admin Stats for Newspaper */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-pendente {
    background: rgba(255, 193, 7, 0.2);
    color: #ff8f00;
}

.status-rejeitado {
    background: rgba(244, 67, 54, 0.2);
    color: #d32f2f;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Admin Jornal Specific Styles */
.admin-page .admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-page .admin-header h1 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--color-accent);
}

.admin-page .admin-header p {
    margin: 0;
    color: rgba(245, 247, 250, 0.7);
}

.admin-stats .stat-card {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-stats .stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(233, 64, 64, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.admin-stats .stat-info h3 {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    color: rgba(245, 247, 250, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-stats .stat-info p {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: 'Rajdhani', sans-serif;
}

.admin-table-wrapper {
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: rgba(245, 247, 250, 0.9);
}

.admin-table th {
    background: rgba(12, 14, 20, 0.6);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: rgba(245, 247, 250, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
}

.admin-table tr:hover {
    background: rgba(12, 14, 20, 0.3);
}

.admin-table strong {
    color: var(--color-accent);
    font-size: 1rem;
}

.admin-table small {
    color: rgba(245, 247, 250, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-aprovado {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.admin-actions form {
    margin: 0;
}

.admin-actions .btn {
    min-width: 36px;
    height: 36px;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.admin-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: rgba(245, 247, 250, 0.6);
    background: rgba(23, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .admin-page .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-table-wrapper {
        padding: 1rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .admin-actions {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .admin-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .newspaper-masthead h1 {
        font-size: 2.5rem;
    }
    
    .newspaper-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .newspaper-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        text-align: center;
    }
    
    .newspaper-article {
        padding: 2rem 1.5rem;
    }
    
    .article-content {
        column-count: 1;
    }
}

.article-byline {
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
    font-style: italic;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.article-body-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.article-media,
.headline-image {
    width: min(320px, 36%);
    min-width: 260px;
    align-self: flex-start;
    position: relative;
}

.article-media img,
.headline-image img {
    width: 100%;
    display: block;
    border: 2px solid rgba(17, 17, 17, 0.35);
    filter: grayscale(100%) contrast(105%);
    margin-bottom: 0.6rem;
}

.article-media figcaption,
.headline-image figcaption {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.6);
}

.secondary-body-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.secondary-image {
    width: min(220px, 32%);
}

.secondary-image img {
    width: 100%;
    display: block;
    border: 1px solid rgba(17, 17, 17, 0.25);
    filter: grayscale(100%) contrast(105%);
}

@media (max-width: 900px) {
    .newspaper-article {
        flex-direction: column;
    }
    .article-media,
    .headline-image {
        width: 100%;
        min-width: 0;
    }
    .article-body-wrapper {
        gap: 1.2rem;
    }
}

@media (max-width: 640px) {
    .secondary-body-wrapper {
        flex-direction: column;
    }
    .secondary-image {
        width: 100%;
    }
}

.sidebar-spot .sidebar-thumb {
    width: 100%;
    display: block;
    border: 1px solid rgba(17, 17, 17, 0.25);
    margin-bottom: 0.5rem;
    filter: grayscale(100%) contrast(105%);
}

.newspaper-detail-page .article-media,
.newspaper-detail-page .headline-image {
    width: min(480px, 45%);
    min-width: 320px;
}

.newspaper-detail-page .article-media img,
.newspaper-detail-page .headline-image img {
    height: auto;
}


.press-frontpage {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(160, 82, 45, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(101, 67, 33, 0.04) 0%, transparent 40%),
        repeating-linear-gradient(90deg, rgba(139, 69, 19, 0.03) 0, rgba(139, 69, 19, 0.03) 1px, transparent 1px, transparent 12px),
        repeating-linear-gradient(0deg, rgba(101, 67, 33, 0.02) 0, rgba(101, 67, 33, 0.02) 1px, transparent 1px, transparent 10px),
        linear-gradient(135deg, #f4f1e8 0%, #ede6d3 25%, #f0e9d6 50%, #e8dfc8 75%, #f2ead7 100%);
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #111;
}

.frontpage-shell {
    max-width: 1100px;
    margin: 0 auto;
    background: 
        radial-gradient(circle at 15% 25%, rgba(139, 69, 19, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(160, 82, 45, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 85%, rgba(101, 67, 33, 0.02) 0%, transparent 20%),
        linear-gradient(180deg, rgba(252, 248, 240, 0.98), rgba(243, 236, 220, 0.96));
    border: 3px solid rgba(25, 22, 20, 0.75);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25), inset 0 0 100px rgba(139, 69, 19, 0.02);
    padding: clamp(2.2rem, 5vw, 3.5rem);
    position: relative;
}

.frontpage-shell::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(25, 22, 20, 0.25);
    pointer-events: none;
}

.frontpage-masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    border-bottom: 10px double #14100d;
    padding-bottom: 1.4rem;
    margin-bottom: 2.4rem;
}

.masthead-brand h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 4.6rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
}

.masthead-brand p {
    margin: 0.35rem 0 0;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-size: 1rem;
    color: rgba(45, 45, 45, 0.65);
}

.masthead-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(17, 17, 17, 0.35);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.masthead-price {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(17,17,17,0.6);
    margin-left: 0.6rem;
    font-weight: 600;
    background: rgba(245, 241, 230, 0.9);
}

.press-frontpage .btn {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.16em;
}

.frontpage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(1.8rem, 3vw, 2.8rem);
}

.frontpage-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-article {
    display: flex;
    gap: 1.8rem;
    border: 2px solid rgba(17, 17, 17, 0.5);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
    padding: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-article:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-media {
    width: 42%;
    min-width: 320px;
    position: relative;
}

.hero-media img {
    width: 100%;
    display: block;
    border: 2px solid rgba(17, 17, 17, 0.35);
    filter: grayscale(100%) contrast(110%);
}

.media-overlay {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(17, 17, 17, 0.25);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-content .label {
    font-size: 0.75rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.55);
}

.hero-content h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-meta {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: rgba(17, 17, 17, 0.65);
}

.hero-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(15, 15, 15, 0.85);
    text-align: justify;
}

.hero-price {
    align-self: flex-start;
    border: 1px solid rgba(17, 17, 17, 0.4);
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.primary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.primary-card {
    border: 1px solid rgba(17, 17, 17, 0.45);
    padding: 1.2rem 1.4rem;
    background: rgba(255, 254, 250, 0.94);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.primary-card h3 {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.primary-meta {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: rgba(17, 17, 17, 0.6);
}

.primary-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.78);
    margin: 0.8rem 0;
}

.primary-price {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.primary-card.is-placeholder {
    text-align: center;
    font-style: italic;
    color: rgba(17, 17, 17, 0.6);
}

.frontpage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    border: 1px solid rgba(17, 17, 17, 0.35);
    background: rgba(250, 247, 238, 0.92);
    padding: 1.3rem 1.4rem;
    position: relative;
    overflow: hidden;
}

.sidebar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(17, 17, 17, 0.35);
}

.sidebar-section h4 {
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.94rem;
    position: relative;
    padding-left: 1.4rem;
}

.sidebar-section h4::before {
    content: '';
    position: absolute;
    top: 0.2rem;
    left: 0;
    width: 0.4rem;
    height: 0.9rem;
    background: rgba(17, 17, 17, 0.55);
}

.bulletin p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.timestamp {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.55);
}

.highlight-card {
    border-top: 1px solid rgba(17, 17, 17, 0.25);
    padding-top: 0.9rem;
    margin-top: 0.9rem;
    cursor: pointer;
}

.highlight-card:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.highlight-head {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.highlight-meta {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    color: rgba(17, 17, 17, 0.55);
    margin-top: 0.4rem;
}

.notices ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notices li {
    padding: 0.5rem 0;
    border-bottom: 1px dotted rgba(17, 17, 17, 0.25);
    font-size: 0.9rem;
    cursor: pointer;
}

.notices li:last-child {
    border-bottom: none;
}

.subscription {
    text-align: center;
}

.subscription-price {
    font-size: 1.3rem;
    margin: 0.6rem 0;
    letter-spacing: 0.1em;
}

.frontpage-empty {
    text-align: center;
    padding: 3rem;
    border: 2px dashed rgba(17, 17, 17, 0.3);
    background: rgba(255, 254, 248, 0.8);
}

.frontpage-empty strong {
    display: block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.frontpage-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(17, 17, 17, 0.35);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.65);
}

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

    .hero-article {
        flex-direction: column;
    }

    .hero-media {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .masthead-info {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .frontpage-shell {
        padding: 1.8rem;
    }

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