@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&family=Anton&display=swap');

:root {
    --dayz-blue: #0088ff;
    --dayz-dark: #020617;
    --dayz-card: #0f172a;
    --dayz-rust: #38bdf8;
    --ticket-amber: #f59e0b;
    --ticket-green: #10b981;
    --ticket-red: #ef4444;
    --text-dim: rgba(255, 255, 255, 0.5);
    --text-faint: rgba(255, 255, 255, 0.3);
    --line: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dayz-dark);
    color: #fff;
    font-family: "Inter", sans-serif;
    antialiased: true;
}

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

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    min-height: 100svh;
    background: var(--dayz-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.28;
}

.page-shell::before {
    width: 320px;
    height: 320px;
    top: 120px;
    left: -80px;
    background: rgba(0, 136, 255, 0.22);
    animation: driftGlow 14s ease-in-out infinite;
}

.page-shell::after {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: 80px;
    background: rgba(56, 189, 248, 0.16);
    animation: driftGlow 18s ease-in-out infinite reverse;
}

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

.font-display {
    font-family: "Anton", sans-serif;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.dayz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--dayz-blue);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    box-shadow: 0 18px 36px rgba(0, 136, 255, 0.28);
}

.dayz-button:hover {
    transform: translateY(-2px);
    background: rgba(0, 136, 255, 0.85);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.top-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-nav .inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dayz-blue);
    border-radius: 0.75rem;
    box-shadow: 0 0 24px rgba(0, 136, 255, 0.3);
}

.brand-icon svg,
.nav-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.64;
}

.nav-text-link:hover {
    opacity: 1;
}

.hero-section {
    position: relative;
    min-height: 90svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-section::before {
    width: 42vw;
    height: 42vw;
    min-width: 280px;
    min-height: 280px;
    top: 12%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.22) 0%, rgba(0, 136, 255, 0) 68%);
    animation: pulseHalo 8s ease-in-out infinite;
}

.hero-section::after {
    width: 34vw;
    height: 34vw;
    min-width: 240px;
    min-height: 240px;
    right: -6%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 70%);
    animation: pulseHalo 10s ease-in-out infinite reverse;
}

.hero-bg,
.cta-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img,
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.34), var(--dayz-dark));
}

.hero-content,
.cta-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1040px;
    text-align: center;
    padding: 0 24px;
    animation: fadeLift 700ms ease both;
}

.hero-title {
    margin: 0 0 28px;
    font-family: "Inter", sans-serif;
    font-size: clamp(3rem, 7.4vw, 6.4rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    max-width: 980px;
    margin-inline: auto;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-title-line {
    display: block;
}

.hero-title .accent {
    display: block;
    margin-top: 0.04em;
    color: var(--dayz-blue);
    text-shadow: 0 0 24px rgba(0, 136, 255, 0.35);
}

.hero-subtitle {
    max-width: 780px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.65;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.hero-actions > * {
    animation: fadeLift 900ms ease both;
}

.section {
    padding: 96px 0;
}

.section.tight {
    padding: 72px 0;
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    text-transform: uppercase;
    line-height: 0.9;
}

.section-title.center,
.section-copy.center {
    text-align: center;
}

.section-copy {
    margin: 0;
    color: var(--text-dim);
    line-height: 1.8;
}

.stats-grid,
.feature-grid,
.guild-grid,
.settings-grid,
.role-grid,
.info-grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

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

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

.stat-card,
.feature-card,
.guild-card,
.settings-card,
.sidebar-card,
.info-card {
    padding: 28px;
}

.stat-card,
.feature-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before,
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, transparent 100%);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.stat-card:hover::before,
.feature-card:hover::before {
    opacity: 1;
}

.stat-card {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 136, 255, 0.22);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    background: rgba(15, 23, 42, 0.92);
}

.stat-number {
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--dayz-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 22px rgba(0, 136, 255, 0.22);
}

.stat-label,
.eyebrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.feature-card .icon-box,
.info-card .icon-box {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(0, 136, 255, 0.12);
    margin-bottom: 22px;
    color: var(--dayz-blue);
}

.feature-card {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 136, 255, 0.18);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.feature-card h3,
.settings-card h3,
.sidebar-card h3,
.guild-card h3,
.info-card h3 {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.feature-card p,
.guild-card p,
.settings-card p,
.sidebar-card p,
.info-card p {
    margin: 0;
    color: var(--text-dim);
    line-height: 1.75;
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 136, 255, 0.9);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
    animation: fadeLift 850ms ease both;
}

.cta-content .section-title {
    margin-bottom: 24px;
}

.footer {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.flash {
    padding: 16px 18px;
    border-radius: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.flash.success {
    background: rgba(0, 136, 255, 0.12);
    color: #9dd6ff;
    border: 1px solid rgba(0, 136, 255, 0.2);
}

.flash.error {
    background: rgba(239, 68, 68, 0.14);
    color: #ffb7b7;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.stats-grid .stat-card:nth-child(1),
.feature-grid .feature-card:nth-child(1) { animation: fadeLift 500ms ease both; }
.stats-grid .stat-card:nth-child(2),
.feature-grid .feature-card:nth-child(2) { animation: fadeLift 620ms ease both; }
.stats-grid .stat-card:nth-child(3),
.feature-grid .feature-card:nth-child(3) { animation: fadeLift 740ms ease both; }
.stats-grid .stat-card:nth-child(4),
.feature-grid .feature-card:nth-child(4) { animation: fadeLift 860ms ease both; }
.feature-grid .feature-card:nth-child(5) { animation: fadeLift 980ms ease both; }
.feature-grid .feature-card:nth-child(6) { animation: fadeLift 1100ms ease both; }

.dashboard-shell {
    padding-top: 112px;
    padding-bottom: 80px;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.toolbar-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.guild-card {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.guild-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.guild-avatar {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    font-family: "Anton", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.25);
}

.guild-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guild-body {
    min-width: 0;
    flex: 1;
}

.guild-name {
    margin: 0 0 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guild-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.guild-status.config {
    color: var(--dayz-blue);
}

.guild-status.invite {
    color: rgba(255, 255, 255, 0.32);
}

.guild-arrow {
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.settings-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.settings-title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.back-button {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.settings-panel-group {
    display: grid;
    gap: 28px;
}

.ticket-overview-card {
    margin-top: 28px;
}

.ticket-table {
    display: grid;
    gap: 14px;
}

.ticket-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 20px;
    padding: 18px 20px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-main p {
    margin-top: 10px;
}

.ticket-headline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ticket-headline strong {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.94rem;
}

.ticket-meta {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.84rem;
}

.ticket-meta span strong {
    color: rgba(255, 255, 255, 0.82);
}

.ticket-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid transparent;
}

.ticket-status.status-open {
    color: #ffe2a6;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.24);
}

.ticket-status.status-live {
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.24);
}

.ticket-status.status-dayz {
    color: #9dd6ff;
    background: rgba(0, 136, 255, 0.14);
    border-color: rgba(0, 136, 255, 0.24);
}

.section-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-bar .icon-box {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
}

.collapsible-card {
    padding: 0;
    overflow: hidden;
}

.collapsible-summary {
    margin: 0;
    padding: 24px 28px;
    list-style: none;
    cursor: pointer;
    justify-content: space-between;
    transition: background 180ms ease;
}

.collapsible-summary::-webkit-details-marker {
    display: none;
}

.collapsible-summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.collapsible-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.collapsible-title h3 {
    margin: 0 0 4px;
}

.collapsible-title small {
    display: block;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.collapsible-chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.46);
    border-bottom: 2px solid rgba(255, 255, 255, 0.46);
    transform: rotate(45deg);
    transition: transform 180ms ease;
    flex-shrink: 0;
    margin-right: 4px;
}

.collapsible-card[open] .collapsible-chevron {
    transform: rotate(225deg);
}

.collapsible-card[open] .collapsible-summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.collapsible-body {
    padding: 24px 28px 28px;
}

.field-group {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.82);
}

.field small {
    display: block;
    margin-bottom: 10px;
    color: var(--text-faint);
    font-size: 0.76rem;
}

.field-full {
    grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 14px 16px;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.field textarea {
    min-height: 180px;
    resize: vertical;
    white-space: pre-wrap;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--dayz-blue);
    box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.15);
}

.field input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    padding: 0;
}

.role-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 180ms ease, background 180ms ease;
}

.role-toggle.active {
    background: var(--dayz-blue);
    border-color: var(--dayz-blue);
}

.role-toggle:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.role-toggle .role-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.role-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex-shrink: 0;
}

.role-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.role-toggle input {
    accent-color: #fff;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.note-card {
    background: rgba(0, 136, 255, 0.08);
    border-color: rgba(0, 136, 255, 0.2);
    padding: 22px 24px;
}

.note-card p strong {
    color: #fff;
}

.note-card .section-bar {
    margin-bottom: 14px;
    padding-bottom: 10px;
}

.metrics-card {
    background:
        radial-gradient(circle at top right, rgba(0, 136, 255, 0.18), transparent 34%),
        rgba(15, 23, 42, 0.88);
}

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

.metrics-kicker,
.metrics-caption {
    margin: 0;
}

.metrics-kicker {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.metrics-total {
    margin: 8px 0 6px;
    font-family: "Anton", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 0.9;
    color: #fff;
}

.metrics-caption {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
}

.metrics-ring {
    width: 116px;
    height: 116px;
    border-radius: 999px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(2, 6, 23, 0.96) 0 58%, transparent 59%),
        conic-gradient(var(--dayz-blue) 0deg, rgba(56, 189, 248, 0.85) calc(var(--progress, 0) * 1%), rgba(255, 255, 255, 0.08) 0);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.28);
}

.metrics-ring span {
    font-family: "Anton", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.metrics-ring small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-align: center;
    max-width: 72px;
}

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

.metric-tile {
    padding: 16px 18px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-total-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.metric-approved-tile {
    background: linear-gradient(180deg, rgba(0, 136, 255, 0.2), rgba(0, 136, 255, 0.06));
    border-color: rgba(0, 136, 255, 0.22);
}

.metric-rejected-tile {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.18), rgba(239, 68, 68, 0.05));
    border-color: rgba(239, 68, 68, 0.16);
}

.metric-label {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.metric-value {
    font-family: "Anton", sans-serif;
    font-size: 2.4rem;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.center-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 52svh;
    text-align: center;
    padding: 48px 24px;
}

.center-empty .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    margin-bottom: 24px;
}

.mono-box {
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 14px;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.72);
    word-break: break-all;
}

.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.dashboard-page {
    background: #05070a;
    color: #fff;
}

.dashboard-page .page-shell {
    background: #05070a;
}

.dashboard-page .page-shell::before,
.dashboard-page .page-shell::after {
    opacity: 0.12;
    filter: blur(110px);
}

.dashboard-page .top-nav {
    background: rgba(5, 7, 10, 0.92);
    border-bottom: 1px solid #1e232e;
    backdrop-filter: blur(14px);
}

.dashboard-page .brand-link,
.dashboard-page .section-title,
.dashboard-page .settings-title-wrap h2,
.dashboard-page .brand-link .font-display {
    font-family: "Inter", sans-serif;
    letter-spacing: -0.04em;
}

.dashboard-page .brand-link .font-display {
    font-size: 1.4rem !important;
    font-weight: 800;
}

.dashboard-page .brand-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 123, 255, 0.14);
    border: 1px solid rgba(0, 123, 255, 0.24);
    box-shadow: none;
}

.dashboard-page .nav-text-link {
    opacity: 0.72;
    letter-spacing: 0.14em;
}

.dashboard-page .dashboard-shell {
    padding-top: 116px;
    padding-bottom: 64px;
}

.dashboard-page .toolbar {
    margin-bottom: 28px;
}

.dashboard-page .toolbar .section-title {
    font-size: clamp(2.1rem, 4.6vw, 3.3rem) !important;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px !important;
}

.dashboard-page .eyebrow {
    color: #8e9297;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
}

.dashboard-page .glass-panel,
.dashboard-page .settings-card,
.dashboard-page .sidebar-card,
.dashboard-page .guild-card,
.dashboard-page .stat-card,
.dashboard-page .info-card {
    background: #0f121a;
    border: 1px solid #1e232e;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: none;
}

.dashboard-page .settings-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.dashboard-page .settings-panel-group {
    gap: 24px;
}

.dashboard-page .settings-card,
.dashboard-page .sidebar-card {
    padding: 24px;
}

.dashboard-page .collapsible-card {
    padding: 0;
    position: relative;
    min-height: 210px;
}

.dashboard-page .section-bar {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: 0;
}

.dashboard-page .section-bar h3,
.dashboard-page .sidebar-card h3,
.dashboard-page .settings-card h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-page .section-bar .icon-box {
    width: 20px;
    min-width: 20px;
    color: #007bff;
}

.dashboard-page .field-group {
    gap: 18px;
}

.dashboard-page .field label {
    margin-bottom: 8px;
    color: #8e9297;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.dashboard-page .field small {
    color: #8e9297;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.dashboard-page .field input,
.dashboard-page .field textarea,
.dashboard-page .field select {
    background: #161b26;
    border: 1px solid #1e232e;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.9rem;
}

.dashboard-page .field textarea {
    min-height: 220px;
}

.dashboard-page .field input:focus,
.dashboard-page .field textarea:focus,
.dashboard-page .field select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.12);
    background: #1a2130;
}

.dashboard-page .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dashboard-page .role-toggle {
    background: #161b26;
    border: 1px solid #1e232e;
    border-radius: 8px;
    padding: 12px;
}

.dashboard-page .role-toggle.active {
    background: rgba(0, 123, 255, 0.08);
    border-color: #007bff;
}

.dashboard-page .role-toggle:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

.dashboard-page .role-name {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.dashboard-page .role-dot {
    width: 8px;
    height: 8px;
}

.dashboard-page .role-toggle input {
    width: 16px;
    height: 16px;
    accent-color: #007bff;
}

.dashboard-page .collapsible-summary {
    padding: 20px 24px;
    background: transparent;
}

.dashboard-page .collapsible-summary:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-page .collapsible-title small {
    color: #8e9297;
    font-size: 0.68rem;
}

.dashboard-page .collapsible-body {
    padding: 0 24px 24px;
}

.dashboard-page .collapsible-card[open] .collapsible-summary {
    border-bottom: 1px solid #1e232e;
}

.dashboard-page .collapsible-card:not([open])::after {
    content: "Clique para expandir";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -5%);
    color: #8e9297;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

.dashboard-page .collapsible-chevron {
    border-right-color: #8e9297;
    border-bottom-color: #8e9297;
}

.dashboard-page .note-card {
    background: rgba(0, 123, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-left: 4px solid #007bff;
    padding: 16px;
}

.dashboard-page .note-card .section-bar {
    margin-bottom: 8px;
}

.dashboard-page .note-card h3 {
    color: #007bff;
    font-size: 0.82rem;
}

.dashboard-page .note-card p {
    color: #8e9297;
    font-size: 0.78rem;
    line-height: 1.55;
}

.dashboard-page .metrics-card {
    text-align: center;
    background: #0f121a;
}

.dashboard-page .metrics-summary {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-page .metrics-kicker {
    color: #8e9297;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
}

.dashboard-page .metrics-total {
    display: none;
}

.dashboard-page .metrics-caption {
    display: none;
}

.dashboard-page .metrics-ring {
    width: 120px;
    height: 120px;
    margin: 6px auto 0;
    background: conic-gradient(#007bff calc(var(--progress, 0) * 1%), rgba(255, 255, 255, 0.08) 0);
    border: 0;
    box-shadow: none;
}

.dashboard-page .metrics-ring::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: #0f121a;
    border-radius: 999px;
}

.dashboard-page .metrics-ring span,
.dashboard-page .metrics-ring small {
    position: relative;
    z-index: 1;
}

.dashboard-page .metrics-ring span {
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.dashboard-page .metrics-ring small {
    max-width: 68px;
    color: #8e9297;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
}

.dashboard-page .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.dashboard-page .metric-tile {
    min-height: auto;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #1e232e;
    text-align: center;
}

.dashboard-page .metric-total-tile,
.dashboard-page .metric-approved-tile,
.dashboard-page .metric-rejected-tile {
    background: rgba(255, 255, 255, 0.03);
    border-color: #1e232e;
}

.dashboard-page .metric-label {
    color: #8e9297;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
}

.dashboard-page .metric-value {
    margin-top: 4px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.dashboard-page .metric-approved-tile .metric-value {
    color: #2ecc71;
}

.dashboard-page .metric-rejected-tile .metric-value {
    color: #e74c3c;
}

.dashboard-page .info-grid {
    gap: 10px !important;
}

.dashboard-page .info-card {
    padding: 10px 0 !important;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #1e232e;
}

.dashboard-page .info-card:last-child {
    border-bottom: 0;
}

.dashboard-page .info-card p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.84rem;
    line-height: 1.4;
}

.dashboard-page .info-card p strong {
    color: #8e9297;
    font-weight: 600;
}

.dashboard-page .dayz-button {
    width: 100%;
    justify-content: center;
    background: #007bff;
    border-radius: 8px;
    box-shadow: none;
    padding: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.dashboard-page .dayz-button:hover {
    background: #0056b3;
}

.dashboard-page .ghost-button {
    border-color: #1e232e;
    background: transparent;
}

.dashboard-page .back-button {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

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

@keyframes slowZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

@keyframes pulseHalo {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes driftGlow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(24px, -18px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1100px) {
    .feature-grid,
    .guild-grid,
    .settings-grid,
    .role-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

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

    .ticket-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .top-nav .inner,
    .toolbar,
    .settings-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: clamp(2.6rem, 12vw, 4.1rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .metrics-summary {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .field-group,
    .dashboard-page .role-grid {
        grid-template-columns: 1fr;
    }
}
