:root {
    --gold: #FFD700;
    --gold-darker: #DAA520;
    --gold-dark: #B8860B;
    --bg-primary: #0D0D0F;
    --bg-secondary: #18181B;
    --bg-card: #1F1F23;
    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --accent: #FFC700;
}

body.light-mode {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-card: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.3s ease, color 0.3s ease;
}

body.light-mode {
    cursor: default;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

/* ==========================================
   LOADING SCREEN
========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-darker));
    width: 0%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.loading-tip {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   PARTICLES
========================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* ==========================================
   THEME TOGGLE
========================================== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    color: var(--gold);
    font-size: 20px;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(20deg);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ==========================================
   NAVBAR
========================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.9);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    gap: 32px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.discord-btn {
    background: #5865F2;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 120px;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(13, 13, 15, 0.95) 0%, rgba(24, 24, 27, 0.9) 100%),
        linear-gradient(to right, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    overflow: hidden;
}

body.light-mode .hero {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.9) 100%),
        linear-gradient(to right, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: floatCircle 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: floatCircle 15s ease-in-out infinite reverse;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero .container {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 540px;
    line-height: 1.6;
}

.server-status {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
}

.status-indicator,
.player-count {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(31, 31, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.light-mode .status-indicator,
body.light-mode .player-count {
    background: rgba(255, 255, 255, 0.9);
}

.status-indicator:hover,
.player-count:hover {
    background: rgba(31, 31, 35, 0.95);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.1);
    }
}

.player-count {
    color: var(--gold);
}

.player-count i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #5865F2;
    color: #FFF;
}

.btn-primary:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* ==========================================
   PAGE HEADER
========================================== */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: 
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 215, 0, 0.1), transparent),
        var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* ==========================================
   STATS DASHBOARD
========================================== */
.stats-dashboard {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-card-large {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
}

.stat-header {
    margin-bottom: 24px;
}

.stat-header h3 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

#playerChart {
    max-height: 300px;
}

/* ==========================================
   NEWS SECTION
========================================== */
.news-section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.view-all {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.news-card.featured {
    grid-column: span 2;
}

.news-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 320px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.news-date {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-category {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-category.update {
    background: #22C55E;
    color: #000;
}

.news-category.event {
    background: #F59E0B;
    color: #000;
}

.news-category.patch {
    background: #3B82F6;
    color: #FFF;
}

.news-category.announcement {
    background: #A855F7;
    color: #FFF;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* ==========================================
   NEWS PAGE
========================================== */
.news-filter-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.filter-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.news-timeline-section {
    padding: 80px 0;
}

.news-entry {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.news-date-badge {
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    min-width: 100px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.date-day {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.date-year {
    font-size: 12px;
    color: var(--text-secondary);
}

.news-entry-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.news-entry-content:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.news-entry-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.news-author {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.separator {
    color: var(--text-secondary);
}

.news-entry-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.news-entry-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.news-entry-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.news-entry-body ul,
.news-entry-body ol {
    margin: 16px 0 16px 24px;
}

.news-entry-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.news-entry-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.news-entry-body p {
    margin-bottom: 16px;
}

.news-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

/* ==========================================
   FAQ PAGE
========================================== */
.faq-search-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 56px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.faq-section {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 64px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.faq-category-header i {
    font-size: 32px;
    color: var(--gold);
}

.faq-category-header h2 {
    font-size: 32px;
    font-weight: 800;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-answer h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer code {
    background: var(--bg-primary);
    color: var(--gold);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 14px;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.faq-answer a:hover {
    opacity: 0.8;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 700;
}

.faq-video {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.faq-cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-cta-box {
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.faq-cta-box i {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 24px;
}

.faq-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.faq-cta-box p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

/* Continue in next message due to character limit... */

/* ==========================================
   REGELWERK (RULES) PAGE
========================================== */
.regelwerk-section {
    padding: 80px 0;
}

.rules-toc {
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
    position: sticky;
    top: 90px;
}

.rules-toc h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rules-toc ul {
    list-style: none;
}

.rules-toc li {
    margin-bottom: 12px;
}

.rules-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.rules-toc a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--text-primary);
}

.rules-toc a i {
    color: var(--gold);
    font-size: 14px;
}

.rule-category {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

.rule-category:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rule-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.rule-category-header i {
    font-size: 36px;
    color: var(--gold);
}

.rule-category-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.rule-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.rule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rule-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rule-number i {
    font-size: 16px;
}

.rule-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.rule-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.rule-description strong {
    color: var(--text-primary);
    font-weight: 700;
}

.rule-examples {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.rule-examples h4 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule-examples ul {
    list-style: none;
    padding-left: 0;
}

.rule-examples li {
    color: var(--text-secondary);
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
}

.rule-examples li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.rule-warning {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #EF4444;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.rule-warning h4 {
    color: #EF4444;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule-warning p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.penalty-info {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.penalty-info h4 {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.penalty-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.penalty-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.penalty-badge i {
    font-size: 12px;
}

.penalty-badge.severe {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* ==========================================
   TEAM PAGE
========================================== */
.team-section {
    padding: 80px 0 120px;
}

.team-category {
    margin-bottom: 80px;
}

.team-category h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--gold);
}

.team-category h2 i {
    font-size: 28px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-darker));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.team-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover .team-logo {
    border-color: var(--gold);
    transform: scale(1.05);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    font-weight: 800;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.team-role {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.team-role.owner {
    background: linear-gradient(135deg, #5a5a5a, #2d2d2d, #5a5a5a, #3d3d3d);
    color: #fff;
}

.team-role.developer {
    background: linear-gradient(135deg, #b88400, #6b4d00, #d99800, #8a5f00);
    color: #ffa726;
}

.team-role.admin {
    background: linear-gradient(135deg, #b89d7a, #7a6650, #c9ad86, #8a7560);
    color: #ffe8c4;
}

.team-role.support {
    background: linear-gradient(135deg, #45b895, #246b52, #55c8a5, #2d7a5f);
    color: #8affb8;
}

.team-role.management {
    background: linear-gradient(135deg, #ce2124, #6b0002, #e63946, #8b0000);
    color: #fff;
}

.team-role.moderator {
    background: linear-gradient(135deg, #5ec1e0, #2d7a8f, #70d1f0, #3d8a9f);
    color: #fff;
}

.team-role.guide {
    background: linear-gradient(135deg, #6bc5e0, #9ae8ff, #7dd5f0, #aaf2ff);
    color: #1a3a45;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.join-team-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.join-team-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.join-team-banner h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.join-team-banner p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.btn-gold {
    display: inline-block;
    background: #000;
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   GALERIE PAGE
========================================== */
.gallery-section {
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.gallery-filter-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 10px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.gallery-filter-btn i {
    font-size: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-category {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-darker));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   CONNECT SECTION
========================================== */
.connect-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.connect-box {
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.connect-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.connect-box p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

.connect-info {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.connect-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.connect-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

.connect-card h4 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.connect-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ==========================================
   SCROLL TO TOP
========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ==========================================
   UTILITIES
========================================== */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-4 {
    margin-top: 24px;
}

.hidden {
    display: none !important;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        flex-direction: column;
        background: rgba(13, 13, 15, 0.98);
        backdrop-filter: blur(12px);
        padding: 32px 24px;
        transition: left 0.3s ease;
        justify-content: flex-start;
        overflow-y: auto;
    }

    body.light-mode .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a.active::after {
        display: none;
    }

    .discord-btn {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .news-entry {
        flex-direction: column;
    }

    .news-date-badge {
        width: fit-content;
        position: relative;
        top: 0;
    }

    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .rule-category {
        padding: 24px;
    }

    .rule-category-header h2 {
        font-size: 24px;
    }

    .faq-cta-box {
        padding: 40px 24px;
    }

    .faq-cta-box h2 {
        font-size: 28px;
    }

    .connect-info {
        flex-direction: column;
    }

    .connect-card {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .theme-toggle,
    .scroll-to-top {
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .theme-toggle {
        top: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rule-category {
        padding: 20px;
    }

    .rule-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .connect-box {
        padding: 32px 24px;
    }

    .connect-box h2 {
        font-size: 28px;
    }

    .join-team-banner {
        padding: 32px 24px;
    }

    .join-team-banner h3 {
        font-size: 24px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ==========================================
   PRINT STYLES
========================================== */
@media print {
    .navbar,
    .theme-toggle,
    .scroll-to-top,
    .particles,
    .custom-cursor,
    .cursor-follower,
    .loading-screen {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ==========================================
   ACCESSIBILITY
========================================== */
@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;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gold: #FFE55C;
        --text-secondary: #C0C0C0;
    }

    .news-card,
    .team-card,
    .feature-card,
    .stat-card {
        border-width: 2px;
    }
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.changelog-section {
    padding: 80px 0 120px;
    background: var(--bg-primary);
}

.changelog-container {
    max-width: 900px;
    margin: 0 auto;
}

.changelog-entry {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.changelog-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-darker));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.changelog-entry:hover::before {
    transform: scaleY(1);
}

.changelog-entry:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.changelog-date {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.changelog-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
}

.changelog-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.changelog-badge.new {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #FFF;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.changelog-badge.update {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #FFF;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.changelog-badge.fix {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #000;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.changelog-badge.major {
    background: linear-gradient(135deg, #A855F7, #9333EA);
    color: #FFF;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.changelog-badge.release {
    background: linear-gradient(135deg, var(--gold), var(--gold-darker));
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.changelog-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.changelog-list li:last-child {
    border-bottom: none;
}

.change-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.change-type.added {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.change-type.added::before {
    content: '+ ';
    font-weight: 900;
}

.change-type.modified {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.change-type.modified::before {
    content: '~ ';
    font-weight: 900;
}

.change-type.removed {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.change-type.removed::before {
    content: '- ';
    font-weight: 900;
}

/* Timeline-Style für Changelog */
.changelog-container {
    position: relative;
}

.changelog-container::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.changelog-entry {
    position: relative;
}

.changelog-entry::after {
    content: '';
    position: absolute;
    left: -52px;
    top: 40px;
    width: 26px;
    height: 26px;
    background: var(--gold);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

/* Filter Section */
.changelog-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .changelog-container::before,
    .changelog-entry::after {
        display: none;
    }

    .changelog-entry {
        padding: 24px;
    }

    .changelog-entry:hover {
        transform: translateY(-4px);
    }

    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .changelog-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .changelog-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .changelog-section {
        padding: 60px 0 80px;
    }

    .changelog-entry {
        padding: 20px;
        margin-bottom: 24px;
    }

    .changelog-content h3 {
        font-size: 18px;
    }

    .changelog-badge {
        padding: 4px 12px;
        font-size: 11px;
    }
}