* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    user-select: none;
}

/* ==========================================
   VERIFICATION POPUP - Performance Optimiert
========================================== */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.verification-popup {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #5865F2;
    padding: 4rem 3rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 80px rgba(88, 101, 242, 0.4),
        0 0 40px rgba(88, 101, 242, 0.2);
}

.verification-overlay.active .verification-popup {
    transform: scale(1) translateY(0);
}

/* Statischer Border Glow - keine Animation */
.verification-popup::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #5865F2, #dd8500, #5865F2);
    z-index: -1;
    opacity: 0.8;
}

.verification-popup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -1;
}

.verification-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(88, 101, 242, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(88, 101, 242, 0.3);
}

.verification-icon svg {
    width: 60px;
    height: 60px;
    fill: #5865F2;
}

.verification-popup h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.verification-popup h2 span {
    color: #5865F2;
}

.verification-popup .subtitle {
    font-size: 1.3rem;
    color: #dd8500;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.verification-popup p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.verification-steps {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.verification-steps .step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #ccc;
    font-size: 1rem;
}

.verification-steps .step:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verification-steps .step-number {
    width: 30px;
    height: 30px;
    background: #5865F2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.verification-steps .step.completed .step-number {
    background: #00ff00;
}

.btn-discord-popup {
    background: #5865F2;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-discord-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-discord-popup:hover::before {
    left: 100%;
}

.btn-discord-popup:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
}

.btn-discord-popup svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.verification-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-close:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

/* ==========================================
   SCROLL ANIMATIONS - Basis Klassen
========================================== */

/* Fade Up Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In */
.animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-rotate.visible {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Blur In */
.animate-blur {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger delay für Grid Items */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
}

nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav .logo img {
    height: 50px;
    transition: transform 0.3s;
}

nav.scrolled .logo img {
    transform: scale(0.9);
}

nav .logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dd8500;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dd8500;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #dd8500;
}

/* ==========================================
   HERO SECTION MIT SLIDESHOW
========================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Hintergrund-Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay über die Slides */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 2rem;
    will-change: transform, opacity;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 12rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide-indicator.active {
    background: #dd8500;
    border-color: #dd8500;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Progress Bar für aktiven Slide */
.slide-progress {
    position: absolute;
    bottom: 11rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.slide-progress-bar {
    height: 100%;
    background: #dd8500;
    width: 0%;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Hero Animations */
.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    animation: heroTitleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span {
    color: #dd8500;
    display: block;
    animation: heroSpanIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroSpanIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
    animation: heroPIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroPIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroButtonsIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroButtonsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: #dd8500;
    color: #000;
}

.btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* FIX: Server Stats - Separate wrapper für Positionierung */
.server-stats-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.server-stats {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: statsIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes statsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIX: Online Dot - Konsistente Farben */
.online-dot {
    width: 10px;
    height: 10px;
    background: #ffbb00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.online-dot.online {
    background: #00ff00;
}

.online-dot.offline {
    background: #ff0000;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px currentColor;
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px currentColor;
    }
}

/* FIX: Scroll Indicator - Eigener Container für Positionierung */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    animation: fadeInIndicator 1s 1.2s forwards, bounce 2s 1.5s infinite;
    opacity: 0;
}

@keyframes fadeInIndicator {
    to {
        opacity: 0.6;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #dd8500;
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Info Section */
.info-section {
    background: #000;
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: #dd8500;
    position: relative;
    display: inline-block;
}

/* FIX: Underline Animation - Korrektes Timing */
.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: #dd8500;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-header.visible h2 span::after {
    width: 100%;
}

.section-header p {
    font-size: 1.2rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-box {
    background: #0a0a0a;
    padding: 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #dd8500;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.feature-box .icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #dd8500;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Server IP Section */
.ip-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #dd8500;
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.3;
    }

    95% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* FIX: IP-Box - Korrekter Layer für rotierende Border */
.ip-box {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
    padding: 3px;
    overflow: hidden;
}

.ip-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #dd8500, transparent 30%);
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    100% {
        transform: rotate(360deg);
    }
}

.ip-box-inner {
    position: relative;
    z-index: 1;
    background: #0a0a0a;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: #dd8500;
    font-weight: 600;
}

.ip-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #dd8500;
    font-size: 1.3rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    outline: none;
}

.copy-button {
    background: #dd8500;
    color: #000;
    padding: 1rem 2rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.copy-button:hover {
    background: #fff;
}

/* News Section */
.news-section {
    background: #050505;
    padding: 8rem 2rem;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: #0a0a0a;
    padding: 2rem;
    border: 1px solid #1a1a1a;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.news-card:hover::after {
    left: 100%;
}

.news-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #dd8500;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.news-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 100%);
    border: 2px solid #dd8500;
    padding: 3rem;
}

.news-badge {
    display: inline-block;
    background: #dd8500;
    color: #000;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2);
    }
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    color: #dd8500;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-featured h3 {
    font-size: 2rem;
}

.news-card p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-highlights {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.news-highlights li {
    color: #ccc;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.news-link {
    color: #dd8500;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link::after {
    content: '→';
    transition: transform 0.3s;
}

.news-link:hover {
    color: #fff;
}

.news-link:hover::after {
    transform: translateX(10px);
}

.news-loading,
.news-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* Discord Section */
.discord-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Circles */
.discord-section::before,
.discord-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.2) 0%, transparent 70%);
    animation: floatCircle 20s infinite ease-in-out;
}

.discord-section::before {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.discord-section::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

.discord-box {
    max-width: 700px;
    margin: 3rem auto 0;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #5865F2;
    padding: 4rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.discord-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
}

.discord-box svg {
    margin-bottom: 2rem;
    transition: transform 0.5s;
}

.discord-box:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.discord-box h3 {
    font-size: 2.5rem;
    color: #5865F2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.discord-box p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-discord:hover::before {
    left: 100%;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    position: relative;
}

footer img {
    height: 80px;
    opacity: 0.6;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
}

footer img:hover {
    opacity: 1;
    transform: scale(1.1);
}

footer p {
    color: #666;
    font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #dd8500;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Mobile: Fixed Background funktioniert nicht auf iOS, daher scroll */
    .hero-slide {
        background-attachment: scroll;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-featured {
        grid-column: 1;
    }

    nav ul {
        display: none;
    }

    .ip-box {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .discord-box {
        padding: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .discord-box h3 {
        font-size: 1.8rem;
    }

    .server-stats {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .verification-popup {
        padding: 2.5rem 1.5rem;
    }

    .verification-popup h2 {
        font-size: 1.5rem;
    }

    .verification-icon {
        width: 80px;
        height: 80px;
    }

    .verification-icon svg {
        width: 40px;
        height: 40px;
    }

    .slide-indicators {
        bottom: 11rem;
    }

    .slide-progress {
        bottom: 10rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #dd8500;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    animation: loaderPulse 1.5s infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}