];
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #ea333399;
            --secondary-color: #742120; /* Orangene Akzentfarbe */
            --accent-color: #DA0200; /* Helleres Orange für Akzente */
            --text-color: #e4e4e7;
            --text-secondary: #a1a1aa;
            --glass-bg: rgba(24, 24, 27, 0.4);
            --glass-border: rgba(63, 63, 70, 0.3);
            --dark-bg: #09090b;
            --card-bg: rgba(39, 39, 42, 0.3);
            --orange-glow: rgba(255, 0, 0, 0.2);
            --orange-bright: #920b09;
            --discord-color: #5865F2;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #09090b 0%, #18181b 25%, #1c1717 50%, #18181b 75%, #09090b 100%);
            background-size: 400% 400%;
            animation: subtleGradient 30s ease infinite;
            overflow-x: hidden;
            color: var(--text-color);
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(234, 51, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.08) 0%, transparent 50%), /* Orange glow */
                radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        @keyframes subtleGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Grid background effect */
        .grid-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 120, 0, 0.02) 1px, transparent 1px), /* Leichter orangener Rastereffekt */
                linear-gradient(90deg, rgba(255, 120, 0, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.4;
            pointer-events: none;
            z-index: 1;
            animation: floatOrb 20s infinite ease-in-out;
        }

        .orb1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(218, 2, 0, 0.3), transparent);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.25), transparent); /* Orange orb */
            bottom: 20%;
            right: 10%;
            animation-delay: 10s;
        }

        /* Neue orangene Orbs hinzugefügt */
        .orb3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.315), transparent);
            top: 60%;
            left: 30%;
            animation-delay: 5s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 18px 40px;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
            align-items: center;
        }

        nav ul li:last-child {
    float: right;
}


        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        nav a i {
            font-size: 1rem;
            color: #DA0200; /* Icon color */
            transition: all 0.3s ease;
        }

        nav a:hover {
            background: rgba(255, 0, 0, 0.15); /* Orange hover effect */
            color: #fff;
        }

        nav a:hover i {
            color: var(--orange-bright);
            transform: translateY(-2px);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover::after {
            width: 90%;
        }
        
        /* News badge styling */
        .news-badge {
            position: absolute;
            top: -10px;
            right: -15px;
            background: linear-gradient(135deg, rgba(234, 51, 51, 0.9), rgba(234, 51, 51, 0.7)); /* Purple base */
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 0 10px #ff000099; /* Orange glow effect */
            border: 1px solid rgba(255, 0, 0, 0.315);
            animation: pulse 2s infinite, shimmer 2s infinite;
        }
        
        /* Pulse and shimmer animation for the badge */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes shimmer {
            0% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.315); }
            50% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.8); }
            100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.315); }
        }
        
        /* Hover effect enhancement for the info item with badge */
        .has-badge:hover .news-badge {
            background: linear-gradient(135deg, rgb(234, 51, 51), rgba(234, 51, 51, 0.8)); /* Brighter purple on hover */
            box-shadow: 0 0 20px #DA0200; /* Enhanced orange glow */
        }

        /* Discord Badge Styling */
        .discord-badge {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1001;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 0 20px rgba(242, 88, 88, 0.2));
        }

        .discord-badge:hover {
            transform: translateY(-5px) scale(1.05);
            filter: drop-shadow(0 5px 25px rgba(242, 88, 88, 0.4));
        }

        .discord-badge-inner {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(35, 30, 30, 0.95), rgba(27, 24, 24, 0.85));
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 12px 15px;
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(234, 51, 51, 0.4),
                inset 0 0 30px rgba(234, 51, 51, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .discord-badge-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: skewX(-25deg);
            transition: all 0.75s ease;
        }

        .discord-badge:hover .discord-badge-inner::before {
            animation: shine 1.5s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 200%; }
        }

        .discord-badge:hover .discord-badge-inner {
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 0 1px rgba(234, 51, 51, 0.7),
                0 0 20px rgba(88, 101, 242, 0.4),
                inset 0 0 40px rgba(234, 51, 51, 0.15);
            background: linear-gradient(135deg, rgba(35, 35, 40, 0.95), rgba(30, 30, 35, 0.85));
        }

        .discord-logo {
            width: 48px;
            height: 48px;
            background: rgba(20, 20, 25, 0.5);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 
                inset 0 0 0 1px rgba(218, 2, 0, 0.3),
                0 0 15px rgba(234, 51, 51, 0.2);
        }

        .custom-discord-logo {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: drop-shadow(0 0 8px rgba(234, 51, 51, 0.5));
            transition: all 0.3s ease;
        }

        .discord-badge:hover .custom-discord-logo {
            transform: scale(1.1);
            filter: drop-shadow(0 0 12px rgba(234, 51, 51, 0.7));
        }
        
        .discord-badge:hover .discord-logo {
            box-shadow: 
                inset 0 0 0 1px rgba(234, 51, 51, 0.5),
                0 0 20px rgba(218, 2, 0, 0.3);
            background: rgba(25, 25, 30, 0.7);
        }

        .discord-counter {
            display: flex;
            flex-direction: column;
        }

        .discord-status {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }

        .online-dot {
            width: 8px;
            height: 8px;
            background: #43b581;
            border-radius: 50%;
            margin-right: 8px;
            position: relative;
        }

        .online-dot::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            width: 12px;
            height: 12px;
            background: transparent;
            border-radius: 50%;
            border: 1px solid #43b581;
            opacity: 0.5;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            75%, 100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .discord-status-text {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        .discord-count {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, rgba(234, 51, 51, 0.9));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            position: relative;
        }

        .discord-count::after {
            content: 'MEMBERS';
            position: absolute;
            bottom: -10px;
            right: 0;
            font-size: 0.55rem;
            font-weight: 700;
            color: rgba(234, 51, 51, 0.8);
            letter-spacing: 1px;
        }
        
        /* Glowing background effect */
        .discord-badge::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, 
                        rgba(88, 101, 242, 0.3) 0%, 
                        rgba(218, 2, 0, 0.3) 50%, 
                        rgba(88, 101, 242, 0.3) 100%);
            filter: blur(20px);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
            border-radius: 25px;
            animation: softPulse 4s infinite alternate;
        }

        @keyframes softPulse {
            0% { 
                opacity: 0.1;
                filter: blur(20px);
            }
            100% { 
                opacity: 0.3;
                filter: blur(25px);
            }
        }
        
        .discord-badge:hover::after {
            opacity: 0.7;
            animation: none;
        }

        .discord-join {
            position: absolute;
            bottom: -32px;
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            opacity: 0;
            background: linear-gradient(135deg, 
                       rgba(234, 51, 51, 0.9),
                       rgba(234, 51, 51, 0.9));
            color: white;
            border-radius: 30px;
            padding: 7px 18px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
                      0 0 0 1px rgba(218, 2, 0, 0.3),
                      0 0 15px rgba(234, 51, 51, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .discord-join i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .discord-badge:hover .discord-join {
            transform: translateX(-50%) scale(1);
            opacity: 1;
            bottom: -35px;
        }
        
        .discord-badge:hover .discord-join i {
            animation: arrowBounce 1s infinite;
        }
        
        @keyframes arrowBounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(3px); }
        }

        @media (max-width: 768px) {
            .discord-badge {
                position: absolute;
                top: 90px;
                right: 15px;
            }
        }

        /* Main container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 150px 20px 50px;
            position: relative;
            z-index: 10;
        }

        /* Hero section */
        .hero {
            text-align: center;
            margin-bottom: 100px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Logo Styling */
        .hero-logo {
            max-width: 400px;
            height: auto;
            margin-bottom: 30px;
            filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.315)); /* Orange glow effect */
            transition: all 0.4s ease;
        }
        
        .logo-link:hover .hero-logo {
            transform: scale(1.05);
            filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.6)); /* Enhanced glow on hover */
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: var(--orange-bright);
            margin-bottom: 50px;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        /* Glass cards */
        .glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.356), transparent); /* Orange border glow */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 0, 0, 0.315); /* Orange border on hover */
            box-shadow: 
                0 20px 60px rgba(255, 0, 0, 0.15), /* Orange glow on hover */
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            background: rgba(39, 39, 42, 0.4);
        }

        /* Action buttons */
        .action-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .btn {
            padding: 18px 45px;
            background: linear-gradient(135deg, #DA0200, #641110); /* Orange button gradient */
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 
                0 5px 20px rgba(231, 9, 9, 0.3), /* Orange glow */
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .btn i {
            font-size: 1.1rem;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 10px 40px rgba(255, 0, 0, 0.5), /* Intensified orange glow on hover */
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, #641110 #DA0200);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid rgba(255, 0, 0, 0.5); /* Orange border */
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 0, 0, 0.05); /* Orange inner glow */
        }

        .btn-secondary:hover {
            background: rgba(255, 0, 0, 0.1); /* Light orange bg on hover */
            border-color: rgba(255, 0, 0, 0.7);
            box-shadow: 
                0 10px 40px rgba(255, 0, 0, 0.315), /* More intense orange glow */
                inset 0 0 30px rgba(255, 140, 0, 0.1);
        }

        /* Info grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .info-card {
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
        }

        .info-card:nth-child(1) { animation-delay: 0.2s; }
        .info-card:nth-child(2) { animation-delay: 0.4s; }
        .info-card:nth-child(3) { animation-delay: 0.6s; }

        .info-card h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-card .icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, rgba(234, 51, 51, 0.2), rgba(246, 92, 92, 0.1)); /* Purple icon bg */
            border: 1px solid rgba(218, 2, 0, 0.3);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: rgba(234, 51, 51, 0.9); /* Purple icon */
        }

        .info-card p {
            line-height: 1.8;
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

        .info-card ul {
            list-style: none;
        }

        .info-card ul li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(63, 63, 70, 0.3);
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .info-card ul li:last-child {
            border-bottom: none;
        }

        .info-card ul li:hover {
            padding-left: 10px;
            color: #fff;
            background: linear-gradient(90deg, rgba(234, 51, 51, 0.08), transparent); /* Purple hover bg */
        }

        .info-card ul li i {
            color: rgba(234, 51, 51, 0.8);
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        /* Orange link styling */
        .orange-link {
            text-decoration: none;
            color: var(--orange-bright);
            transition: all 0.3s ease;
            position: relative;
        }

        .orange-link:hover {
            text-decoration: underline;
            color: #ff3333;
        }

        /* Features section */
        .features {
            margin-bottom: 80px;
        }

        .features h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #fff, #ff0000); /* Orange gradient text */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .feature-item {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(234, 51, 51, 0.05), transparent); /* Purple inner glow */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-item:hover::after {
            opacity: 1;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            border-color: rgba(218, 2, 0, 0.3); /* Purple border on hover */
            box-shadow: 0 10px 30px rgba(234, 51, 51, 0.15); /* Purple glow on hover */
        }

        .feature-item .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
            background: linear-gradient(135deg, #DA0200, #742120); /* Purple gradient icon */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(218, 2, 0, 0.3)); /* Purple icon glow */
        }

        .feature-item h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .feature-item p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Connect section */
        .connect-section {
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 170, 0, 0.02)); /* Orange gradient bg */
        }

        .connect-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .server-ip {
            background: rgba(24, 24, 27, 0.6);
            border: 2px solid rgba(255, 0, 0, 0.315); /* Orange border */
            border-radius: 15px;
            padding: 20px 40px;
            display: inline-block;
            margin: 20px 0;
            transition: all 0.3s ease;
        }

        .server-ip:hover {
            border-color: rgba(255, 0, 0, 0.315); /* Brighter orange on hover */
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.2); /* Orange glow */
        }

        .server-ip code {
            font-size: 1.5rem;
            color: var(--accent-color); /* Orange code text */
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(180deg, transparent, rgba(24, 24, 27, 0.5));
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--glass-border);
            margin-top: 100px;
        }

        footer p {
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        
        /* Orange heart in footer */
        .orange-heart {
            color: var(--orange-bright);
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .hero-logo {
                max-width: 80%;
            }
            
            .hero .subtitle {
                font-size: 1rem;
            }
            
            nav {
                width: 90%;
                padding: 15px 20px;
            }
            
            nav ul {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav a {
                font-size: 0.85rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        /* Loading animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeOut 1s ease 2s forwards;
            pointer-events: none;
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }


                .page-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .page-header h1 {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, #ff0000 50%, #ff0000 100%); /* Orange gradient */
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: gradientText 4s ease infinite;
            filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.3)); /* Orange glow */
        }

        @keyframes gradientText {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .page-header p {
            font-size: 1.2rem;
            color: var(--orange-bright); /* Orange subtitle */
            letter-spacing: 1px;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: rgba(255, 0, 0, 0.1); /* Orange button bg */
            border: 1px solid rgba(255, 0, 0, 0.3); /* Orange button border */
            border-radius: 12px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 40px;
        }

        .back-btn:hover {
            background: rgba(255, 0, 0, 0.2); /* Darker orange on hover */
            transform: translateX(-5px);
        }

          /* Team Grid Styling */
        .team-section {
            margin-bottom: 60px;
            text-align: center;
        }

        

        .team-section h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 0, 0, 0.3); /* Orange border */
            display: inline-block;
            padding: 0 30px 15px;
            transition: all 0.3s ease;
        }

        .team-section:hover h2 {
            color: var(--orange-bright); /* Orange text on hover */
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
            justify-items: center;
        }
        
        .team-grid2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            width: fit-content; /* passt sich an Inhalt an */
            margin: 0 auto; /* zentriert horizontal */
            gap: 30px;
            margin-bottom: 60px;
            justify-items: center; /* zentriert Elemente in den Spalten */
        }


        .team-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            width: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 140, 0, 0.3); /* Orange border on hover */
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2); /* Orange glow */
            background: rgba(39, 39, 42, 0.4);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent); /* Orange gradient border */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover::before {
            opacity: 1;
        }

        /* Interaktiver Glüheffekt bei Hover */
        .team-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
                       rgba(255, 0, 0, 0.15) 0%, 
                       transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            border-radius: 16px;
        }

        .team-card:hover::after {
            opacity: 1;
        }

        .avatar-container {
            width: 160px;
            height: 160px;
            margin-top: 30px;
            position: relative;
        }

        .team-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid rgba(234, 51, 51, 0.5); /* Lila Rand standard */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        .team-card:hover .team-avatar {
            border-color: rgba(255, 0, 0, 0.5); /* Orange Rand beim Hover */
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2); /* Orange Glow */
        }

        .team-info {
            padding: 25px;
            text-align: center;
            width: 100%;
        }

        .team-name {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .team-card:hover .team-name {
            color: var(--orange-bright); /* Orangener Text beim Hover */
        }

        .team-role {
            color: var(--accent-color); /* Orange Rollentext */
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 15px;
            display: inline-block;
            background: rgba(147, 51, 234, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
            border: 1px solid rgba(147, 51, 234, 0.2);
            transition: all 0.3s ease;
        }
        
        .team-card:hover .team-role {
            background: rgba(255, 140, 0, 0.1); /* Orange Hintergrund beim Hover */
            border-color: rgba(255, 0, 0, 0.3);
        }
        
        .team-grid-center {
    display: flex;
    justify-content: center; /* Mittig horizontal */
    align-items: center; /* Mittig vertikal */
    gap: 1.5rem;
    flex-wrap: wrap;
}

 .task-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 10px;
        }
        
        .task-badge {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            font-size: 0.8rem;
            padding: 3px 10px;
            border-radius: 12px;
            color: #93c5fd;
            transition: all 0.3s ease;
        }



        .badge {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            z-index: 10;
            transform: translate(10px, 10px);
            transition: all 0.3s ease;
        }

        .team-card:hover .badge {
            transform: translate(10px, 10px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .badge-owner {
            background: linear-gradient(135deg, hsl(0, 1%, 31%), hsl(0, 1%, 50%)); /* Orange gradient für PL */
        }
        
        .badge-pl {
            background: linear-gradient(135deg, #ff0000, #ff0000); /* Orange gradient für PL */
        }

        .badge-stv {
            background: linear-gradient(135deg, #9333EA, #7E22CE); /* Lila gradient für StV */
        }

        .badge-team {
            background: linear-gradient(135deg, #9333EA, #ff0000); /* Lila-Orange Gradient für Team */
        }

        /* Schwebende Partikel um die Karten */
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            z-index: 5;
        }

        /* Animation für schwebende Badges und Effekte */
        @keyframes floatEffect {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Wrapper zentriert das Loginfenster */
/* --- AUTH PAGE (LOGIN & REGISTER) --- */

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.auth-card {
    width: 380px;
    padding: 35px;
    background: rgba(15, 15, 20, 0.55);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

.auth-card h2 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.input-field {
    text-align: left;
    margin-bottom: 18px;
}

.input-field label {
    font-size: 14px;
    color: #c9c9c9;
    margin-bottom: 6px;
    display: block;
}

.input-field input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: border 0.2s, background 0.2s;
}

.input-field input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3ea6ff;
    outline: none;
}

.auth-btn {
    width: 100%;
    margin-top: 5px;
    padding: 12px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.auth-btn:hover {
    transform: scale(1.03);
}

.switch-link {
    margin-top: 18px;
    font-size: 14px;
}

.switch-link a {
    color: #3ea6ff;
    text-decoration: none;
}

.switch-link a:hover {
    text-decoration: underline;
}

.msg-error {
    color: #ff4e4e;
    margin-bottom: 10px;
}

.msg-success {
    color: #4eff91;
    margin-bottom: 10px;
}

/* smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px);}
    to { opacity: 1; transform: translateY(0); }
}

/* Login-Seiten-Container */
.login-page {
    position: relative;
    z-index: 2;              /* über den Orbs */
    display: flex;
    justify-content: center;  /* horizontal zentrieren */
    align-items: center;      /* vertikal zentrieren */
    height: 100vh;            /* volle Höhe des Bildschirms */
    width: 100%;
}

/* Login-Box selbst */
.login-box {
    background-color: rgba(20,20,20,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
    width: 350px;
    max-width: 90%;
    text-align: center;
    color: #fff;
    z-index: 2;  /* über Hintergrund */
}

/* Logo */
.login-logo {
    width: 120px;
    margin-bottom: 20px;
}

/* Fehlermeldungen */
.error {
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Buttons und Inputs */
.login-box input, .login-box button {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: none;
}

.login-box button {
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}

.login-box button:hover {
    background-color: #45a049;
}


