@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Press+Start+2P&display=swap');

:root {
    --bg: #050608;
    --bg-elevated: #101119;
    --bg-elevated-soft: #0b0c12;
    --text: #f5f5f5;
    --muted: #9b9ca7;
    --accent: #a407fa;
    --accent-glow: rgba(164, 7, 250, 0.7);
    --accent-soft: rgba(164, 7, 250, 0.18);
    --danger: #ff3b3b;
    --divider: rgba(255, 255, 255, 0.08);
    --card-radius: 20px;
    --transition-fast: 0.2s ease-out;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Orbitron", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    background: radial-gradient(circle at top, #111322 0, #050608 45%, #020308 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Partikel-Canvas im Hintergrund */
#bg-particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: block;
}

/* dezente Lichtreflexe */
body::after {
    content: "";
    position: fixed;
    inset: -50%;
    background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
    z-index: -3;
    mix-blend-mode: screen;
    animation: pulse-bg 16s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% {
        transform: scale(1);
        opacity: 0.35;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(5, 6, 8, 0.55), rgba(5, 6, 8, 0.35));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-brand img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.6));
}

.nav-brand-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.brand-highlight {
    color: #a407fa;
    text-shadow: 0 0 12px rgba(164, 7, 250, 0.7), 0 0 24px rgba(164, 7, 250, 0.4);
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link {
    position: relative;
    display: inline-block;
    color: #dedede;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: calc(100% - 10px);
    max-width: 34px;
    min-width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.75);
    transform: translateX(-50%) scaleX(0.72);
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    animation: nav-link-line-pulse 2s ease-in-out infinite alternate;
}

@keyframes nav-link-line-pulse {
    0% {
        transform: translateX(-50%) scaleX(0.72);
        filter: brightness(0.88);
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.55);
    }

    100% {
        transform: translateX(-50%) scaleX(1);
        filter: brightness(1.1);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    }
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dedede;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.nav-dropdown-toggle:hover {
    color: #ffffff;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s ease-out;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    min-width: 180px;
    background: rgba(10, 11, 17, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 18px;
    color: #dedede;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.15s ease-out, color 0.15s ease-out;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.nav-dropdown-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* LAYOUT HELPERS */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 100px;
}

.section-narrow {
    max-width: 900px;
}

.center {
    text-align: center;
}

.divider {
    width: 280px;
    height: 3px;
    margin: 0 auto 50px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
    animation: divider-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes divider-pulse {
    0% {
        transform: scaleX(0.7);
        opacity: 0.6;
    }

    100% {
        transform: scaleX(1.05);
        opacity: 1;
    }
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 40px;
}

.brand-highlight,
.hero-highlight {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow),
        0 0 20px var(--accent-glow),
        0 0 30px var(--accent-glow);
}

.white-glow {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
}

/* HERO (Index only) */
.hero {
    padding-top: 60px;
    padding-bottom: 90px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    text-align: center;
    padding: 0 12px;
    line-height: 1.3;
    will-change: transform, text-shadow;
    transition: transform 0.18s ease-out, text-shadow 0.18s ease-out;
}

.hero-title span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-shadow:
        0 0 14px rgba(255, 255, 255, 0.9),
        0 0 26px rgba(255, 255, 255, 0.7),
        0 0 55px rgba(255, 255, 255, 0.65);
}

.hero-highlight,
.hero-title span.hero-highlight {
    color: var(--accent);
    text-shadow:
        0 0 14px var(--accent-glow),
        0 0 26px var(--accent-glow),
        0 0 55px var(--accent-glow);
}

.hero-subtitle {
    max-width: 640px;
    text-align: center;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.discord-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff, #d5d5d5);
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, filter 0.2s ease-out;
}

.discord-main-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 30px rgba(255, 255, 255, 1),
        0 0 80px rgba(255, 255, 255, 0.9);
    filter: brightness(1.05);
}

.hero-socials {
    margin-top: 22px;
    display: flex;
    gap: 22px;
    font-size: 1.3rem;
}

.hero-socials a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e6e6e6;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    transition: transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out,
        color 0.18s ease-out,
        background 0.18s ease-out;
}

.hero-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* CARDS GRID (Features) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
    perspective: 1200px;
}

.tilt-card {
    position: relative;
    border-radius: var(--card-radius);
    padding: 26px 22px;
    background: radial-gradient(circle at top, #191a24 0, #0a0b11 55%, #050608 100%);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    transform: perspective(900px) rotateX(0) rotateY(0);
    transition: transform 0.14s ease-out, box-shadow 0.2s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
    cursor: pointer;
    overflow: hidden;
}

.tilt-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 60%);
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.18s ease-out;
}

.tilt-card:hover::after {
    opacity: 1;
}

.tilt-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.tilt-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.tilt-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.tilt-card:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
    background: radial-gradient(circle at top, #1f2131 0, #0b0c15 60%, #050608 100%);
}

/* PARTNERS */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.partner-card {
    background: rgba(16, 17, 25, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 22px 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 22, 33, 0.8);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-soft);
}

.partner-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.partner-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.partner-text {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.partner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
}

.partner-btn {
    padding: 7px 16px;
    font-size: 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.partner-btn.primary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.partner-btn:hover {
    transform: translateY(-1px);
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.partner-btn[aria-disabled="true"] {
    opacity: 0.45;
    pointer-events: none;
    transform: none;
}

.partner-code,
.partner-btn.partner-code {
    padding: 7px 14px;
    font-size: 0.76rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 0 16px var(--accent-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    pointer-events: none;
    transform: none;
}

.partner-code.empty,
.partner-btn.partner-code.empty {
    opacity: 0.72;
}

/* PARTNERSHIP CTA */
.partnership-cta {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    background: radial-gradient(circle at top, #181a24 0, #0a0b11 55%, #050608 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.partnership-info {
    flex: 1;
    min-width: 300px;
}

.partnership-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partnership-info p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.partnership-contact {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partnership-contact-label {
    font-size: 0.75rem;
    color: #a407fa;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(164, 7, 250, 0.5);
}

.partnership-email-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partnership-email {
    font-size: 1rem;
    color: #ffffff;
    font-family: monospace;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* COMMUNITY CTA */
.cta-section {
    text-align: center;
}

.cta-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cta-text {
    font-size: 0.96rem;
    color: var(--muted);
    margin-bottom: 26px;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow:
        0 0 18px rgba(255, 255, 255, 1),
        0 0 55px rgba(255, 255, 255, 0.95);
    animation: cta-pulse 2.2s ease-in-out infinite alternate;
    transition: all var(--transition-fast);
}

.cta-discord-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 0 26px rgba(255, 255, 255, 1),
        0 0 70px rgba(255, 255, 255, 0.95);
    background: #ffffff;
    color: #000000;
}

.cta-discord-btn:focus,
.cta-discord-btn:active,
.cta-discord-btn:visited {
    background: #ffffff;
    color: #000000;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.9), 0 0 45px rgba(255, 255, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 255, 255, 0.95);
    }
}

/* ANTRAEGE SPECIFIC (Page Header, Accordion, Forms) */
.page-header {
    padding-top: 60px;
    padding-bottom: 30px;
    text-align: center;
}

.page-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow:
        0 0 14px rgba(255, 255, 255, 0.9),
        0 0 26px rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.4;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.unban-card {
    background: radial-gradient(circle at top, #181a27 0, #0a0b11 55%, #050608 100%);
    border-radius: 24px;
    padding: 32px 26px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.unban-form {
    display: grid;
    gap: 16px;
}

.form-row-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

label {
    font-size: 0.88rem;
    color: #d9d9e1;
    display: block;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    background: #05060b;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 12px;
    color: var(--text);
    font-size: 0.92rem;
    outline: none;
    transition: all var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
    background: #070812;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
}

.form-checkbox input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.helper-text {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 6px;
}

.appeal-form-message {
    margin-top: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    padding: 11px 14px;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    line-height: 1.4;
}

.appeal-form-message i {
    flex: 0 0 auto;
}

.appeal-form-message.success {
    border-color: rgba(40, 167, 69, 0.55);
    background: rgba(40, 167, 69, 0.12);
    color: #9ff0b3;
}

.appeal-form-message.error {
    border-color: rgba(220, 53, 69, 0.55);
    background: rgba(220, 53, 69, 0.12);
    color: #ffb1ba;
}

.unban-submit {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.btn-outline-light {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.18s ease-out;
}

.back-link:hover {
    color: #ffffff;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: radial-gradient(circle at top, #181a27 0, #0a0b11 55%, #050608 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease-out;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-title i {
    color: #a407fa;
    font-size: 1.1rem;
}

.accordion-icon {
    font-size: 0.9rem;
    color: #9b9ca7;
    transition: transform 0.3s ease-out;
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item.open .accordion-content {
    max-height: 1200px;
}

.accordion-body {
    padding: 0 24px 24px;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 24px 24px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    height: 46px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.footer-quote {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    font-size: 0.88rem;
    color: var(--muted);
}

.footer-links li+li {
    margin-top: 6px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.78rem;
    color: #7a7b84;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 14px;
    font-size: 0.96rem;
}

.footer-socials a {
    color: #6d6f77;
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

body.legal-modal-open {
    overflow: hidden;
}

.legal-modal-backdrop {
    position: fixed;
    inset: 0;
    padding: 22px;
    background: rgba(2, 3, 8, 0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1200;
}

.legal-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal {
    width: min(860px, 100%);
    max-height: min(90vh, 840px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(15, 16, 26, 0.97), rgba(7, 8, 13, 0.98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    transform: translateY(18px) scale(0.985);
    transition: transform 0.2s ease;
}

.legal-modal-backdrop.open .legal-modal {
    transform: translateY(0) scale(1);
}

.legal-modal-header {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.legal-modal-title {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.legal-modal-close {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    line-height: 1;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.legal-modal-close:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.legal-modal-body {
    padding: 20px 22px 22px;
    max-height: calc(90vh - 82px);
    overflow: auto;
    color: #d2d5df;
    font-size: 0.88rem;
    line-height: 1.7;
}

.legal-modal-body a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-info-note {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f7d37a;
}

.legal-section+.legal-section {
    margin-top: 18px;
}

.legal-section h3 {
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.legal-section ul {
    padding-left: 18px;
}

.legal-section li+li {
    margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .navbar-inner {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-brand {
        order: -1;
        flex: 1 0 100%;
        justify-content: center;
    }

    .nav-brand-text {
        font-size: 1rem;
    }

    .nav-group {
        font-size: 0.78rem;
        gap: 20px;
        justify-content: center;
        flex: 1 0 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .page-header {
        padding-top: 40px;
    }

    .legal-modal-backdrop {
        padding: 14px;
    }

    .legal-modal-header {
        padding: 14px 14px;
    }

    .legal-modal-body {
        padding: 14px;
        font-size: 0.83rem;
    }
}

/* SUPPORT SECTION */
.support-times {
    margin-top: 80px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
    perspective: 1000px;
}

.support-card {
    background: rgba(16, 17, 25, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: translate3d(0, 0, 0);
}

.support-card:hover {
    transform: translate3d(0, -8px, 24px) scale(1.02);
    background: rgba(20, 22, 33, 0.84);
    border-color: var(--accent);
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.45), 0 0 24px var(--accent-soft);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent-glow));
    margin-bottom: 8px;
}

.support-day {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.support-time-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

/* TEAM ROSTER */
.team-roster-groups {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.team-roster-role {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-roster-role-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.team-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 22px;
    justify-content: center;
    align-items: stretch;
}

.team-roster-card {
    --member-color: #4b74ff;
    position: relative;
    border-radius: 18px;
    padding: 22px 20px 18px;
    min-height: 190px;
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(155deg, rgba(17, 21, 35, 0.82), rgba(8, 10, 17, 0.9));
    border: 1px solid color-mix(in srgb, var(--member-color) 60%, #ffffff 15%);
    background:
        linear-gradient(155deg, rgba(17, 21, 35, 0.82), rgba(8, 10, 17, 0.9)),
        radial-gradient(circle at 30% -10%, color-mix(in srgb, var(--member-color) 40%, transparent) 0%, transparent 50%);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.team-roster-card::before {
    content: "";
    position: absolute;
    inset: -45% -35% auto;
    height: 210px;
    pointer-events: none;
    background: radial-gradient(circle, color-mix(in srgb, var(--member-color) 30%, transparent) 0%, transparent 65%);
    opacity: 0.45;
    transform: translateY(-25px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.team-roster-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
    border-color: color-mix(in srgb, var(--member-color) 80%, #ffffff 10%);
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.6),
        0 0 26px color-mix(in srgb, var(--member-color) 38%, transparent);
}

.team-roster-card:hover::before {
    opacity: 0.72;
    transform: translateY(-8px);
}

.team-roster-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: color-mix(in srgb, var(--member-color) 28%, transparent);
    box-shadow: 0 0 20px color-mix(in srgb, var(--member-color) 32%, transparent);
    border: 1px solid color-mix(in srgb, var(--member-color) 60%, #ffffff 10%);
}

.team-roster-icon i {
    font-size: 1.05rem;
}

.team-roster-name {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.team-roster-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 12px;
    min-height: 1.3em;
}

.team-roster-meta {
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 12px;
    opacity: 0;
    max-height: 0;
    transform: translateY(6px);
    overflow: hidden;
    transition: opacity 0.22s ease, max-height 0.22s ease, transform 0.22s ease;
}

.team-roster-card:hover .team-roster-meta,
.team-roster-card:focus-within .team-roster-meta {
    opacity: 1;
    max-height: 170px;
    transform: translateY(0);
}

.team-roster-meta-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.74);
    color: color-mix(in srgb, var(--member-color) 75%, #ffffff 35%);
    margin-bottom: 8px;
}

.team-roster-task-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.team-roster-task-list li {
    position: relative;
    padding-left: 14px;
    color: #d8deeb;
    font-size: 0.82rem;
    line-height: 1.4;
}

.team-roster-task-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    background: color-mix(in srgb, var(--member-color) 85%, #ffffff 10%);
    box-shadow: 0 0 10px color-mix(in srgb, var(--member-color) 50%, transparent);
}

.team-roster-empty {
    text-align: center;
    color: var(--muted);
    padding: 18px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .team-roster-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 320px));
        justify-content: center;
    }
}

/* NEWS PAGE STYLES */
.news-container {
    max-width: 800px;
    margin: 40px auto;
}

.news-card {
    background: radial-gradient(circle at top, #181a24 0, #0a0b11 55%, #050608 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.news-date {
    font-size: 0.85rem;
    color: #a407fa;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

/* --- IMAGE CLICK CAPTCHA --- */
.captcha-image-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.captcha-image-wrapper.verified {
    border-color: #a407fa;
    background: rgba(164, 7, 250, 0.1);
}

.captcha-label {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.captcha-label strong {
    color: #a407fa;
}

.captcha-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.captcha-item {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.captcha-item:hover {
    border-color: #a407fa;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(164, 7, 250, 0.3);
}

.captcha-item img {
    width: 80%;
    height: auto;
    pointer-events: none;
}

.captcha-item i {
    font-size: 1.8rem;
    color: #888;
    pointer-events: none;
}

.captcha-status-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.captcha-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.captcha-dot.active {
    background: #a407fa;
    box-shadow: 0 0 10px rgba(164, 7, 250, 0.6);
}

.captcha-success {
    font-size: 1.1rem;
    color: #a407fa;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.shake-error {
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

/* --- INFO BOX WARNING --- */
.info-box-warning {
    background: rgba(40, 40, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #ffaa00;
    /* Warning Orange */
}

.info-box-header i {
    font-size: 1.5rem;
}

.info-box-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffaa00;
}

.info-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 12px;
}

.info-box-warning ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.info-box-warning ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-box-warning ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #777;
}

.info-box-warning ul li strong {
    color: #e0e0e0;
}

.info-footer {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.4;
}

/* --- DISCORD LOGIN UI --- */
.discord-login-section {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.discord-login-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.discord-login-prompt>i {
    font-size: 3rem;
    color: #5865F2;
}

.discord-login-prompt p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.discord-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.discord-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #5865F2;
}

.discord-user-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.discord-username {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.discord-user-id {
    font-size: 0.85rem;
    color: #888888;
}

.btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #888888;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6464;
}

/* --- COMING SOON / LOGIN PAGE --- */
.coming-soon-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(164, 7, 250, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo img {
    width: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(164, 7, 250, 0.6));
}

.login-box h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-subtitle {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1rem;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a407fa;
}

.input-group input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #a407fa;
    box-shadow: 0 0 10px rgba(164, 7, 250, 0.2);
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #a407fa, #7a05bd);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(164, 7, 250, 0.4);
}

.error-msg {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    animation: shake 0.4s both;
}
