/* === Basis (dein Style) === */
* {
    box-sizing: border-box;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    font-family: Rajdhani, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

body {
    background: radial-gradient(70% 100% at 50% 0%, #1a0a1a, #0d050d);
    background-attachment: fixed;
}

.hidden {
    display: none !important;
}

/* === Grid / Hintergrund === */
.grid {
    position: fixed;
    transform: translate(-50%);
    left: 50%;
    top: 0;
    pointer-events: none;
    z-index: 0;
}

.grid div {
    position: absolute;
    transform: translate(-50%);
    left: 50%;
    top: -26px;
    width: 420px;
    height: 44px;
    background: rgba(255, 0, 255, 0.85);
    filter: blur(58px);
    opacity: 0.6;
}

.grid svg.bgGrid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    mix-blend-mode: overlay;
    opacity: 0.5;
    pointer-events: none;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 6, 18, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.navInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navLogoImg {
    height: 40px;
    width: auto;
    object-fit: contain;
}


.navLogoText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navLogoMain {
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.12em;
}

.navLogoSub {
    color: #8d8d8d;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 2.4px;
    margin-top: 2px;
}

.navLinks {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navLinks a {
    color: #ffffff90;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
}

.navLinks a:hover,
.navLinks a.active {
    color: #FF00FF;
}

.navDiscord {
    color: #7289da !important;
}

.navDiscord:hover {
    color: #8fa3f5 !important;
}

.navConnect {
    padding: 8px 16px;
    border: 1px solid rgba(255, 0, 255, 0.95);
    background: rgba(255, 0, 255, 0.24);
    color: #fff !important;
    border-radius: 0;
}

.navConnect:hover {
    background: #FF00FF;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.35);
}

.navToggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navToggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

/* === Hero === */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.heroContent {
    max-width: 800px;
    text-align: center;
}

.heroLogo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.heroTitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.heroTitle span {
    color: #FF00FF;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.heroTagline {
    color: #9d9d9d;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 32px;
}

.heroActions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.heroBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    padding: 0 24px;
    font-family: Rajdhani, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.heroBtn.primary {
    border: 1px solid rgba(255, 0, 255, 0.95);
    background: rgba(255, 0, 255, 0.24);
    color: #fff;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.25);
}

.heroBtn.primary:hover {
    background: #FF00FF;
    box-shadow: 0 0 24px rgba(255, 0, 255, 0.5);
}

.heroBtn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.heroBtn.secondary:hover {
    border-color: rgba(255, 0, 255, 0.8);
    background: rgba(255, 0, 255, 0.2);
}

.heroServer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.heroServerLabel {
    color: #8f8f8f;
    font-size: 13px;
}

.heroServerIp {
    color: #e4e4e4;
    font-size: 14px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.3);
}

.heroCopy {
    height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #ffffff16;
    color: #fff;
    font-family: Rajdhani, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.heroCopy:hover {
    background: #FF00FF;
    border-color: rgba(255, 0, 255, 0.95);
}

/* === Sections === */
.section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

.sectionAlt {
    background: radial-gradient(60% 70% at 50% 50%, #1a0a1af2, #0d050df2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sectionInner {
    max-width: 1200px;
    margin: 0 auto;
}

.sectionNarrow {
    max-width: 680px;
}

.sectionTitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 32px;
    text-transform: uppercase;
}

/* === Card Grid (dein Style) === */
.cardGrid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(126.89% 161.83% at 50% 50%, #fff0, #9999991a);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.15);
}

.cardTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.cardTitle {
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.cardText {
    color: #e4e4e4;
    font-size: 14px;
    line-height: 1.4;
}

.statusChip {
    min-width: 64px;
    height: 22px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #ffffff14;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.statusChip.open {
    border-color: rgba(102, 219, 137, 0.9);
    background: rgba(102, 219, 137, 0.18);
}

.statusChip.closed {
    border-color: rgba(189, 189, 189, 0.7);
    background: rgba(189, 189, 189, 0.14);
}

/* === Rules === */
.rulesList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ruleItem {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(126.89% 161.83% at 50% 50%, #fff0, #9999991a);
}

.ruleNum {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FF00FF;
    opacity: 0.8;
    flex-shrink: 0;
}

.ruleTitle {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.ruleText {
    color: #c4c4c4;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* === Connect === */
.connectBox {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(126.89% 161.83% at 50% 50%, #fff0, #9999991a);
    padding: 24px;
}

.connectStep {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.connectStep:last-of-type {
    margin-bottom: 0;
}

.connectNum {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 0, 255, 0.6);
    background: rgba(255, 0, 255, 0.2);
    font-weight: 700;
    font-size: 16px;
    color: #FF00FF;
}

.connectStep p {
    color: #e4e4e4;
    font-size: 15px;
    line-height: 1.5;
    margin: 4px 0 0;
}

.connectStep a {
    color: #FF00FF;
    text-decoration: none;
}

.connectStep a:hover {
    text-decoration: underline;
}

.connectCopy {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connectCopy input {
    flex: 1;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #ffffff14;
    color: #fff;
    padding: 0 12px;
    font-family: Rajdhani, sans-serif;
    font-size: 14px;
}

.connectCopy input::placeholder {
    color: #8f8f8f;
}

/* === Footer === */
.footer {
    position: relative;
    z-index: 1;
    padding: 48px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.4);
}

.footerInner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footerLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.footerLogoMain {
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.footerLogoSub {
    color: #8d8d8d;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 2px;
}

.footerLinks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footerLinks a {
    color: #8f8f8f;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footerLinks a:hover {
    color: #FF00FF;
}

.footerLegal {
    color: #6f6f6f;
    font-size: 12px;
    margin: 0;
}

/* === Seite Philosophie === */
.pageMain {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
}

.teamHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.teamPageLogo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.pageTitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 24px;
}

.contentBlock {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(126.89% 161.83% at 50% 50%, #fff0, #9999991a);
    padding: 32px;
}

.contentBlock .lead {
    font-size: 18px;
    color: #e4e4e4;
    margin: 0 0 20px;
}

.contentBlock p, .contentBlock li {
    color: #c4c4c4;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.contentBlock h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 28px 0 12px;
}

.contentBlock ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.philosophyBlock p {
    margin-bottom: 20px;
}

.philosophyBlock p:last-child {
    margin-bottom: 0;
}

/* === Team === */
.teamGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.teamCard {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(126.89% 161.83% at 50% 50%, #fff0, #9999991a);
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.teamCard:hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.15);
}

.teamAvatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 0, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.teamAvatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.teamName {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0 0 4px;
}

.teamRole {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 0, 255, 0.6);
    background: rgba(255, 0, 255, 0.2);
    color: #FF00FF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.teamDesc {
    color: #c4c4c4;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.teamNote {
    margin-top: 32px;
    padding: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: #8f8f8f;
    font-size: 13px;
}

/* === Regelwerk Accordion (Timeless-Style) === */
.regelwerkPage .pageTitle {
    margin-bottom: 12px;
}

.pageIntro {
    color: #9d9d9d;
    font-size: 15px;
    margin: 0 0 32px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.accordionItem {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordionItem:last-child {
    border-bottom: none;
}

.accordionHead {
    width: 100%;
    padding: 18px 24px;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.accordionHead:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accordionItem.open .accordionHead {
    background: rgba(255, 0, 255, 0.15);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
}

.accordionBody {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordionContent {
    padding: 24px;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.accordionContent p,
.accordionContent .rulePara {
    color: #e4e4e4;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.accordionContent .rulePara:last-child,
.accordionContent p:last-child {
    margin-bottom: 0;
}

.accordionContent .ruleNum {
    color: #FF83FA;
    font-weight: 700;
    margin-right: 6px;
}

.accordionContent .ruleSubTitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #acacac;
    margin: 20px 0 10px;
}

.accordionContent .ruleNote {
    color: #8f8f8f;
    font-size: 13px;
    font-style: italic;
}

.accordionContent ul {
    margin: 0 0 16px;
    padding-left: 20px;
    color: #e4e4e4;
}

/* === Responsive === */
@media (max-width: 900px) {
    .navLinks {
        display: none;
    }

    .navToggle {
        display: flex;
    }

    .nav.open .navLinks {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        background: rgba(18, 6, 18, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cardGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .heroServer {
        flex-direction: column;
    }

    .heroActions {
        flex-direction: column;
    }

    .heroBtn {
        width: 100%;
    }

    .connectCopy {
        flex-direction: column;
    }
}
