        :root {
            --primary: #9D4EDD;
            --primary-dark: #7B2CBF;
            --secondary: #FFD700;
            --secondary-dark: #D4AF37;
            --accent: #00B4D8;
            --dark: #0D0B14;
            --darker: #07050C;
            --light: #F8F9FA;
            --gray: #1E192C;
            --gray-light: #2D263F;
            --gold-gradient: linear-gradient(135deg, #FFD700, #D4AF37, #B8860B);
            --gold-glow: 0 0 15px rgba(255, 215, 0, 0.7);
            --purple-glow: 0 0 15px rgba(157, 78, 221, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 90% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 50% 85%, rgba(0, 180, 216, 0.15) 0%, transparent 25%);
            padding-top: 90px;
        }
        
        /* NEUER VERBESSERTER HEADER */
        .new-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(13, 11, 20, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 0.8rem 2rem;
        }
        
        .new-header.scrolled {
            padding: 0.5rem 2rem;
            background: rgba(7, 5, 12, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(16px);
        }
        
        .header-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-family: 'MedievalSharp', cursive;
            font-weight: 700;
            font-size: 2.2rem;
            color: var(--secondary);
            text-shadow: var(--gold-glow);
            transition: all 0.3s ease;
            z-index: 1002;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo i {
            margin-right: 12px;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(157, 78, 221, 0.8);
            animation: pulse 2s infinite;
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2.5rem;
            position: relative;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            padding: 0.5rem 0;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .nav-links a i {
            margin-right: 8px;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .nav-links a:hover i {
            transform: translateY(-3px);
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: width 0.4s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            margin-left: 2.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .nav-button {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: var(--gold-gradient);
            color: #333;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.4s;
            border: none;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .nav-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }
        
        .nav-button:hover::before {
            left: 100%;
        }
        
        .nav-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.7);
        }
        
        /* Info-Button für rechtliche Informationen */
        .info-button {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }
        
        .info-button:hover {
            background: rgba(0, 180, 216, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
        }
        
        .info-button i {
            margin-right: 8px;
        }
        
        /* Dropdown für rechtliche Informationen */
        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 350px;
            background: rgba(13, 11, 20, 0.98);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-top: none;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.4s ease;
            z-index: 1001;
        }
        
        .dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-family: 'MedievalSharp', cursive;
            text-align: center;
            font-size: 1.6rem;
            text-shadow: var(--gold-glow);
        }
        
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .legal-links a {
            color: var(--light);
            text-decoration: none;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            background: rgba(30, 25, 44, 0.7);
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .legal-links a i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .legal-links a:hover {
            background: rgba(157, 78, 221, 0.2);
            transform: translateX(5px);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--light);
            z-index: 1003;
            transition: transform 0.3s;
        }
        
        .hamburger:hover {
            transform: rotate(90deg);
        }
        
        /* Hero Section - Optimiert */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            margin-top: -90px;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            opacity: 0.3;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(7, 5, 12, 0.9), rgba(157, 78, 221, 0.3), rgba(255, 215, 0, 0.2));
            z-index: -1;
        }
        
        .hero-content {
            max-width: 900px;
            z-index: 2;
        }
        
        .hero h1 {
            font-family: 'MedievalSharp', cursive;
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1.5rem;
            color: var(--light);
            text-shadow: 0 0 25px rgba(157, 78, 221, 0.8);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s forwards 0.5s;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--secondary);
            text-shadow: var(--gold-glow);
            display: block;
            position: relative;
        }
        
        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }
        
        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.6rem);
            max-width: 800px;
            margin-bottom: 2.5rem;
            color: #ccc;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s forwards 0.8s;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s forwards 1.1s;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.1rem 2.5rem;
            background: var(--gold-gradient);
            color: #333;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.4s;
            border: none;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-7px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.7);
        }
        
        .cta-button.secondary:hover {
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
            background: rgba(255, 215, 0, 0.1);
        }
        
        /* Event Countdown */
        .countdown {
            background: rgba(30, 25, 44, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s forwards 1.4s;
        }
        
        .countdown h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-family: 'MedievalSharp', cursive;
            font-size: 1.6rem;
            text-shadow: var(--gold-glow);
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .countdown-unit {
            background: var(--darker);
            padding: 0.8rem;
            border-radius: 10px;
            min-width: 70px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .countdown-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            text-shadow: var(--gold-glow);
            font-family: 'Orbitron', sans-serif;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            color: #ccc;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        
        /* Particle Effect */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
        
        /* Sections */
        section {
            padding: 6rem 2rem;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            font-family: 'MedievalSharp', cursive;
            font-size: clamp(2.2rem, 6vw, 3.5rem);
            color: var(--secondary);
            position: relative;
            padding-bottom: 1.5rem;
            text-shadow: var(--gold-glow);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--gold-gradient);
            border-radius: 2px;
            animation: shine 4s infinite;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* About Section - Optimiert */
        .about {
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .about::before, .about::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(30px);
            z-index: -1;
        }
        
        .about::before {
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(var(--primary), transparent);
        }
        
        .about::after {
            bottom: -150px;
            left: -150px;
            width: 300px;
            height: 300px;
            background: radial-gradient(var(--secondary), transparent);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-family: 'MedievalSharp', cursive;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-shadow: var(--gold-glow);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            transform: perspective(1000px) rotateY(-15deg);
            transition: transform 0.7s;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 1s;
        }
        
        .about-image:hover img {
            transform: scale(1.1);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold-gradient);
            opacity: 0.1;
            z-index: 1;
            pointer-events: none;
        }
        
        /* Features Section - Optimiert */
        .features {
            background-color: var(--darker);
            position: relative;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .feature-card {
            background: linear-gradient(145deg, var(--gray), var(--dark));
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.5s;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
            z-index: 2;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 45px rgba(255, 215, 0, 0.3);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
            transition: all 0.5s;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            color: var(--light);
            font-family: 'MedievalSharp', cursive;
        }
        
        .feature-card p {
            font-size: 1rem;
            color: #ccc;
        }
        
        /* Gallery Section - Optimiert */
        .gallery {
            background-color: var(--dark);
            overflow: hidden;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            height: 280px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.5s;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .gallery-item:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.2);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 1;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        .gallery-item-title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s;
        }
        
        .gallery-item:hover .gallery-item-title {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-item-title h3 {
            color: var(--secondary);
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
            font-family: 'MedievalSharp', cursive;
            font-size: 1.6rem;
        }
        
        /* Rules Section - Optimiert */
        .rules {
            background-color: var(--darker);
        }
        
        .rules-content {
            background: linear-gradient(145deg, var(--gray), var(--dark));
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .rules-content::before {
            content: '';
            position: absolute;
            top: -70%;
            left: -50%;
            width: 50%;
            height: 250%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(-45deg);
            animation: shine 4s infinite;
        }
        
        .rule-item {
            margin-bottom: 2rem;
            padding-left: 2.5rem;
            position: relative;
            border-left: 3px solid var(--secondary);
            padding-bottom: 1rem;
        }
        
        .rule-item h3 {
            font-family: 'MedievalSharp', cursive;
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.6rem;
            text-shadow: var(--gold-glow);
        }
        
        .rule-item p {
            font-size: 1.1rem;
            color: #ccc;
        }
        
        /* Join Section - Optimiert */
        .join {
            background: linear-gradient(to bottom, var(--dark), var(--darker));
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .join::before, .join::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(30px);
            z-index: -1;
        }
        
        .join::before {
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(var(--accent), transparent);
        }
        
        .join::after {
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(var(--secondary), transparent);
        }
        
        .join-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .join-content p {
            margin-bottom: 3rem;
            font-size: 1.2rem;
        }
        
        .server-ip {
            background: linear-gradient(145deg, var(--gray), var(--dark));
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .server-ip h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-family: 'MedievalSharp', cursive;
            font-size: 2rem;
            text-shadow: var(--gold-glow);
        }
        
        .ip-address {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            background-color: var(--darker);
            padding: 1.2rem 2.5rem;
            border-radius: 15px;
            display: inline-block;
            cursor: pointer;
            transition: all 0.4s;
            color: var(--secondary);
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            text-shadow: var(--gold-glow);
        }
        
        .ip-address:hover {
            background-color: rgba(255, 215, 0, 0.1);
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
        }
        
        /* Footer - Optimiert */
        footer {
            background-color: var(--dark);
            padding: 4rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            position: relative;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-family: 'MedievalSharp', cursive;
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            text-shadow: var(--gold-glow);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, var(--gray), var(--dark));
            border-radius: 50%;
            color: var(--light);
            font-size: 1.8rem;
            transition: all 0.4s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: -1;
        }
        
        .social-links a:hover::before {
            opacity: 1;
        }
        
        .social-links a:hover {
            transform: translateY(-8px) rotate(5deg);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
            color: #333;
        }
        
        .copyright {
            color: #999;
            font-size: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gold-gradient);
            color: #333;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
            border: none;
        }
        
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-8px) rotate(10deg);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.7);
        }
        
        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold-gradient);
            color: #333;
            padding: 1rem 2rem;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            font-weight: 600;
        }
        
        .toast.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Legal Modal Styles */
        .legal-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(7, 5, 12, 0.95);
            z-index: 2000;
            overflow-y: auto;
            backdrop-filter: blur(10px);
        }
        
        .legal-modal.active {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 2rem;
        }
        
        .legal-modal-content {
            background: var(--dark);
            border-radius: 20px;
            padding: 3rem;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--secondary);
            position: relative;
        }
        
        .legal-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--gold-gradient);
            color: #333;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
        }
        
        .legal-modal-close:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7);
        }
        
        .legal-modal-title {
            font-family: 'MedievalSharp', cursive;
            font-size: 2.5rem;
            color: var(--secondary);
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: var(--gold-glow);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 1rem;
        }
        
        .legal-section {
            margin-bottom: 2.5rem;
            background: rgba(30, 25, 44, 0.7);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--accent);
        }
        
        .legal-section h3 {
            font-family: 'MedievalSharp', cursive;
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.6rem;
        }
        
        .legal-section p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .legal-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .legal-section li {
            margin-bottom: 0.5rem;
        }
        
        .contact-highlight {
            background: rgba(255, 215, 0, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            margin: 1.5rem 0;
        }
        
        .contact-email {
            color: var(--secondary);
            font-weight: bold;
            text-decoration: none;
        }
        
        .contact-email:hover {
            text-decoration: underline;
        }
        
        /* Footer Legal Links */
        .footer-legal {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-legal-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-legal-link {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .footer-legal-link:hover {
            color: var(--secondary);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 0 10px rgba(157, 78, 221, 0.7);
            }
            50% {
                transform: scale(1.1);
                text-shadow: 0 0 20px rgba(157, 78, 221, 1);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 10px rgba(157, 78, 221, 0.7);
            }
        }
        
        @keyframes shine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        .floating {
            animation: float 8s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .delay-1 {
            animation-delay: 1s;
        }
        
        .delay-2 {
            animation-delay: 2s;
        }
        
        .delay-3 {
            animation-delay: 3s;
        }
        
        /* Responsive Design für den neuen Header */
        @media (max-width: 992px) {
            .nav-links li {
                margin-left: 1.5rem;
            }
            
            .nav-cta {
                margin-left: 1.5rem;
                gap: 1rem;
            }
            
            .dropdown {
                width: 300px;
                right: -50px;
            }
        }
        
        @media (max-width: 768px) {
            .new-header {
                padding: 0.8rem 1rem;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
                padding: 2rem;
                z-index: 999;
                box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .nav-cta {
                margin: 1.5rem 0 0;
                flex-direction: column;
            }
            
            .dropdown {
                position: static;
                width: 100%;
                margin-top: 1rem;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                display: none;
                border-radius: 15px;
                border: 1px solid rgba(255, 215, 0, 0.3);
            }
            
            .dropdown.active {
                display: block;
            }
            
            .hamburger {
                display: block;
            }
            
            /* Weitere Media Queries */
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .ip-address {
                font-size: 1.5rem;
                padding: 1rem 2rem;
            }
            
            .social-links a {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .rule-item {
                padding-left: 1.5rem;
            }
            
            .rule-item h3 {
                font-size: 1.4rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .legal-modal.active {
                padding: 1rem;
            }
            
            .legal-modal-content {
                padding: 2rem 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .rules-content {
                padding: 2rem 1.5rem;
            }
            
            .server-ip {
                padding: 1.5rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .scroll-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }
            
            .countdown-unit {
                min-width: 60px;
                padding: 0.6rem;
            }
            
            .countdown-value {
                font-size: 1.6rem;
            }
            
            .footer-legal-links {
                flex-direction: column;
                gap: 1rem;
            }
        }