        :root {
            --primary-color: #2a3038;
            --secondary-color: #4d5663;
            --accent-color: #8b0000;
            --text-color: #e6e6e6;
            --highlight-color:rgb(157, 255, 0);
            --border-color: #3a3f48;
            --nav-active-color:rgba(32, 29, 27, 0.7);
            --nav-hover-color:rgb(32, 29, 27);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-image: url('/img/military-bg.jpg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            position: relative;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styling - Modernisiertes Design */
        header {
            background-color: rgba(20, 22, 26, 0.95);
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
            padding: 15px 0;
            border-bottom: 1px solid rgba(157, 255, 0, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 65px;
            filter: drop-shadow(0 0 8px rgba(157, 255, 0, 0.4));
            transition: all 0.3s ease;
        }
        
        .logo img:hover {
            filter: drop-shadow(0 0 12px rgba(157, 255, 0, 0.7));
            transform: scale(1.05);
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        /* Sprachauswahl Styling */
        .language-selector {
            position: relative;
            margin-right: 15px;
        }
        
        .language-selector-button {
            display: flex;
            align-items: center;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .language-selector-button:hover {
            background: rgba(0, 0, 0, 0.5);
        }
        
        .language-selector-button img {
            width: 20px;
            height: 15px;
            margin-right: 5px;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--primary-color);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            width: 180px;
            z-index: 1000;
            display: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .language-selector:hover .language-dropdown {
            display: block;
        }
        
        .language-option {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .language-option:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .language-option img {
            width: 20px;
            height: 15px;
            margin-right: 10px;
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
        }
        
        .social-icon {
            color: var(--text-color);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            color: var(--highlight-color);
            transform: translateY(-2px);
        }
        
        /* Auth Buttons Styling */
        .auth-buttons {
            display: flex;
            gap: 10px;
            margin-left: 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 16px;
            border-radius: 4px;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn-login {
            background-color: rgba(32, 36, 42, 0.8);
            color: var(--text-color);
            border: 1px solid rgba(54, 54, 53, 0.5);
        }
        
        .btn-login:hover:not(.disabled) {
            background-color: rgba(42, 46, 52, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .btn-register {
            background-color: rgba(139, 0, 0, 0.8);
            color: var(--text-color);
            border: 1px solid rgba(159, 20, 20, 0.5);
        }
        
        .btn-register:hover:not(.disabled) {
            background-color: rgba(159, 0, 0, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .disabled {
            opacity: 0.7;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        /* Main Navigation - Modernisiertes Design mit dunklerem Hintergrund */
        .main-nav {
            background: linear-gradient(to bottom, rgba(12, 13, 16, 0.98), rgba(18, 20, 24, 0.98));
            border-bottom: 1px solid rgba(139, 0, 0, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 10;
        }
        
        .nav-container {
            display: flex;
            justify-content: center;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            justify-content: center;
        }
        
        /* Primary Navigation Items */
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            color: var(--text-color);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 3px solid transparent;
        }
        
        .nav-item.active .nav-link {
            border-bottom: 3px solid var(--secondary-color);
            background-color: rgba(54, 54, 53, 0.1);
        }
        
        .nav-link i {
            margin-right: 8px;
        }
        
        .nav-item.active .nav-link {
            background-color: var(--highlight-color);
            color: #000;
        }
        
        /* Discord Link Styling */
        .discord-nav-item .discord-link {
            color: #5865F2; /* Discord-Farbe */
        }
        
        .discord-nav-item:hover .discord-link {
            background-color: #5865F2;
            color: white;
        }
        
        .discord-nav-item .discord-link i {
            color: #5865F2;
        }
        
        .discord-nav-item:hover .discord-link i {
            color: white;
        }
        
        /* Überschreiben des Standard-Hover-Effekts für Discord */
        .nav-item.discord-nav-item:hover .nav-link {
            background-color: #5865F2;
            color: white;
        }
        
        .nav-item:hover .nav-link {
            background-color: var(--nav-hover-color);
            color: #000;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 250px;
            background-color: var(--primary-color);
            list-style: none;
            padding: 0;
            margin: 0;
            display: none;
            z-index: 100;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .nav-item:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu li {
            border-bottom: 1px solid var(--border-color);
        }
        
        .dropdown-menu li:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .dropdown-menu a:hover {
            background-color: var(--highlight-color);
            color: #000;
        }
        
        .dropdown-menu a i {
            margin-right: 10px;
            width: 16px;
            text-align: center;
            color: var(--highlight-color);
        }
        
        .dropdown-menu a:hover i {
            color: #000;
        }
        
        /* Responsive Navigation */
        @media (max-width: 992px) {
            .nav-menu {
                flex-direction: column;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                display: none;
            }
            
            .nav-item.show .dropdown-menu {
                display: block;
            }
        }
        
        :root {
            --primary-color: #2a3038;
            --secondary-color: #4d5663;
            --accent-color: #8b0000;
            --text-color: #e0e0e0;
            --highlight-color: #ffcc00;
            --dark-bg: #1a1e24;
            --border-color: #3a3f48;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-image: url('/img/military-bg.jpg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            position: relative;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styling */
        header {
            background-color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            padding: 10px 0;
        }
        
        .header-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(26, 30, 36, 0.95), rgba(26, 30, 36, 0.8));
            z-index: 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
            z-index: 1;
        }
        
        .logo img {
            height: 60px;
            filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
            transition: all 0.3s ease;
        }
        
        .logo img:hover {
            filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.8));
            transform: scale(1.05);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .btn-login {
            background: linear-gradient(to bottom, var(--accent-color), #600000);
            border: 1px solid #600000;
            padding: 10px 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background: linear-gradient(to bottom, #a30000, var(--accent-color));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 100;
        }
        
        .mobile-menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--highlight-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Main Navigation */
        .main-nav {
            background: linear-gradient(to bottom, rgba(12, 13, 16, 0.98), rgba(18, 20, 24, 0.98));
            position: relative;
            background-image: url('/img/nav-bg.jpg') opacity(0.5);
            background-size: cover;
            background-position: center;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .nav-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(42, 48, 56, 0.9);
            z-index: 0;
        }
        
        .nav-container {
            position: relative;
            z-index: 1;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, rgba(255, 204, 0, 0.3), transparent);
        }
        
        .nav-item:last-child::after {
            display: none;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: var(--text-color);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .nav-link i:not(.dropdown-icon) {
            margin-right: 8px;
            color: var(--highlight-color);
            text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
        }
        
        .dropdown-icon {
            font-size: 0.7rem;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .nav-item:hover .dropdown-icon {
            transform: rotate(180deg);
        }
        
        .nav-item.active .nav-link,
        .nav-item:hover .nav-link {
            color: rgba(54, 54, 53, 0.9);
        }
        
        .nav-item.active .nav-link::after,
        .nav-item:hover .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
        }
        
        .has-dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(26, 30, 36, 0.95);
            min-width: 220px;
            list-style: none;
            padding: 10px 0;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            border: 1px solid var(--border-color);
            border-top: 2px solid var(--highlight-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-radius: 0 0 5px 5px;
        }
        
        .has-dropdown:hover .dropdown-menu,
        .dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .dropdown-menu a:hover {
            background-color: rgba(0, 0, 0, 0.2);
            color: var(--highlight-color);
            border-left: 3px solid var(--highlight-color);
            padding-left: 25px;
        }
        
        .dropdown-menu a i {
            margin-right: 10px;
            width: 16px;
            text-align: center;
            color: var(--highlight-color);
            opacity: 0.8;
        }
        
        /* Responsive Navigation */
        @media (max-width: 992px) {
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 80px 0 30px;
                z-index: 99;
                transition: right 0.3s ease;
                overflow-y: auto;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-item::after {
                display: none;
            }
            
            .nav-link {
                padding: 15px 25px;
                justify-content: space-between;
                border-bottom: 1px solid rgba(58, 63, 72, 0.3);
            }
            
            .nav-item.active .nav-link::after,
            .nav-item:hover .nav-link::after {
                display: none;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                border: none;
                box-shadow: none;
                background-color: rgba(0, 0, 0, 0.2);
                width: 100%;
                padding: 0;
            }
            
            .dropdown-menu.show {
                max-height: 500px;
            }
            
            .dropdown-menu a {
                padding-left: 50px;
            }
            
            .dropdown-menu a:hover {
                padding-left: 55px;
            }
            
            .mobile-menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.7);
                z-index: 98;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .mobile-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu-toggle.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            
            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }