        :root {
            /* Champagne Gold Accent */
            --accent-color:  #c9a961;
            --accent-dark:   #a8893f;
            --accent-light:  #d9bf7c;
            --accent-bright: #e6cf8e;
            --accent-subtle: #2a2520;
            --accent-glow:   rgba(201, 169, 97, 0.18);

            /* Semantic */
            --success-color: #6dbf75;
            --warning-color: #d49a4f;
            --error-color:   #e07b7b;
            --info-color:    #7ab0d4;

            /* Neutral Slate Backgrounds */
            --bg-primary:    #0e0e10;
            --bg-secondary:  #1a1a1d;
            --bg-tertiary:   #232327;
            --bg-quaternary: #2d2d31;
            --bg-glass:      rgba(26, 26, 29, 0.85);

            /* Text */
            --text-primary:   #f5f4f1;
            --text-secondary: #d4d3cf;
            --text-muted:     #8b8a87;
            --text-light:     #6b6a67;
            --text-on-accent: #1a1410;

            /* Borders */
            --border-color: #2a2a2d;
            --border-light: #3a3a3e;

            /* Interactive */
            --hover-bg:   rgba(201, 169, 97, 0.08);
            --active-bg:  rgba(201, 169, 97, 0.16);
            --focus-ring: rgba(201, 169, 97, 0.45);

            /* Shadows */
            --shadow-xs:     0 1px 2px 0 rgba(0, 0, 0, 0.4);
            --shadow-sm:     0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
            --shadow-md:     0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
            --shadow-lg:     0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
            --shadow-xl:     0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
            --shadow-accent: 0 0 30px rgba(201, 169, 97, 0.25);
            --shadow-glow:   0 0 20px rgba(201, 169, 97, 0.12);

            /* Radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 28px;
            --radius-full: 50%;

            /* Transitions */
            --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
            --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

            /* Typography — Inter Variable */
            --font-family:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
            --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
            --font-size-xs:   0.75rem;
            --font-size-sm:   0.875rem;
            --font-size-base: 0.9375rem;
            --font-size-lg:   1.0625rem;
            --font-size-xl:   1.3125rem;
            --font-size-2xl:  1.625rem;
            --font-size-3xl:  2.0625rem;
            --font-size-4xl:  2.5625rem;

            /* Spacing Scale */
            --spacing-1: 0.2rem;
            --spacing-2: 0.4rem;
            --spacing-3: 0.6rem;
            --spacing-4: 0.8rem;
            --spacing-5: 1rem;
            --spacing-6: 1.2rem;
            --spacing-8: 1.6rem;
            --spacing-10: 2rem;
            --spacing-12: 2.4rem;
        }

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

        html {
            height: 100%;
        }

        body {
            height: 100%;
            font-family: var(--font-family);
            font-size: var(--font-size-base);
            line-height: 1.55;
            color: var(--text-primary);
            background: #0a0a0c;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Wallpaper-Hintergrund — identisch zur Hauptpage (global.css body::before) */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 900px 500px at 22% 18%,
                    rgba(201, 169, 97, 0.22) 0%,
                    rgba(201, 169, 97, 0.08) 35%,
                    transparent 65%),
                radial-gradient(ellipse 800px 600px at 82% 92%,
                    rgba(201, 169, 97, 0.14) 0%,
                    rgba(201, 169, 97, 0.04) 40%,
                    transparent 60%),
                linear-gradient(135deg,
                    rgba(14, 14, 16, 0.65) 0%,
                    rgba(14, 14, 16, 0.72) 50%,
                    rgba(14, 14, 16, 0.80) 100%),
                url(/images/wallpaper.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        /* Organic Gradient Overlay */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(217, 191, 124, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 50% 90%, rgba(168, 137, 63, 0.04) 0%, transparent 50%);
            animation: organicMove 25s ease-in-out infinite alternate;
            z-index: 0;
        }

        @keyframes organicMove {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-5%, -8%) scale(1.05); }
            100% { transform: translate(5%, -5%) scale(0.98); }
        }

        .login-container {
            background: linear-gradient(145deg, rgba(26, 26, 29, 0.97), rgba(35, 35, 39, 0.92));
            border: 1px solid rgba(201, 169, 97, 0.25);
            border-radius: var(--radius-xl);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 
                        0 0 100px rgba(201, 169, 97, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.08),
                        inset 0 -1px 0 rgba(201, 169, 97, 0.15);
            backdrop-filter: blur(25px) saturate(180%);
            overflow: hidden;
            max-width: 480px;
            width: 90%;
            animation: fadeInScale 0.7s var(--bounce);
            position: relative;
            z-index: 1;
        }

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

        /* Elegant Top Border Accent */
        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(201, 169, 97, 0.3) 20%,
                var(--accent-color) 50%,
                rgba(201, 169, 97, 0.3) 80%,
                transparent 100%);
            animation: accentPulse 4s ease-in-out infinite;
        }

        @keyframes accentPulse {
            0%, 100% { opacity: 0.6; transform: scaleX(1); }
            50% { opacity: 1; transform: scaleX(1.02); }
        }

        /* Subtle Corner Glow */
        .login-container::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
            pointer-events: none;
            animation: cornerGlow 8s ease-in-out infinite;
        }

        @keyframes cornerGlow {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.7; }
        }

        .login-header {
            padding: var(--spacing-10) var(--spacing-8) var(--spacing-8);
            border-bottom: 1px solid rgba(201, 169, 97, 0.2);
            background: linear-gradient(145deg, rgba(35, 35, 39, 0.7), rgba(45, 45, 49, 0.5));
            backdrop-filter: blur(12px);
            text-align: center;
            position: relative;
        }

        .logo {
            width: 90px;
            height: 90px;
            margin: 0 auto var(--spacing-6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: var(--font-size-3xl);
            color: white;
            overflow: hidden;
            position: relative;
            animation: logoFloat 4s ease-in-out infinite;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(217, 191, 124, 0.1));
            border: 2px solid rgba(201, 169, 97, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
                        inset 0 2px 4px rgba(255, 255, 255, 0.05);
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        .logo::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(201, 169, 97, 0.2) 50%, 
                transparent 70%);
            animation: logoShine 6s ease-in-out infinite;
        }

        @keyframes logoShine {
            0% { transform: rotate(0deg) translate(-50%, -50%); }
            100% { transform: rotate(360deg) translate(-50%, -50%); }
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
            border-radius: calc(var(--radius-lg) - 2px);
        }

        .login-title {
            font-size: var(--font-size-3xl);
            font-weight: 700;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-bright) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.8px;
            text-shadow: 0 2px 10px rgba(201, 169, 97, 0.2);
        }

        .login-subtitle {
            font-size: var(--font-size-base);
            color: var(--text-secondary);
            font-weight: 400;
            opacity: 0.9;
        }

        .login-content {
            padding: var(--spacing-10) var(--spacing-8) var(--spacing-8);
        }

        .error-message {
            background: linear-gradient(135deg, rgba(200, 84, 84, 0.18), rgba(200, 84, 84, 0.1));
            color: #f5a5a5;
            padding: var(--spacing-5);
            border-radius: var(--radius-md);
            margin-top: var(--spacing-8);
            font-size: var(--font-size-sm);
            border: 1px solid rgba(200, 84, 84, 0.35);
            display: flex;
            align-items: center;
            gap: var(--spacing-4);
            backdrop-filter: blur(10px);
            animation: errorSlideIn 0.5s var(--bounce);
            box-shadow: 0 4px 15px rgba(200, 84, 84, 0.15);
        }

        @keyframes errorSlideIn {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .error-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
            flex-shrink: 0;
            animation: errorPulse 2.5s ease-in-out infinite;
        }

        @keyframes errorPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.05); }
        }

        .discord-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-4);
            padding: var(--spacing-5) var(--spacing-8);
            border: 1.5px solid rgba(201, 169, 97, 0.4);
            border-radius: var(--radius-lg);
            font-size: var(--font-size-lg);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            white-space: nowrap;
            width: 100%;
            min-height: 58px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
            color: var(--text-on-accent);
            box-shadow: 0 6px 20px rgba(201, 169, 97, 0.35), 
                        0 0 30px rgba(201, 169, 97, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.15),
                        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .discord-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left var(--transition-slow);
        }

        .discord-btn:hover::before {
            left: 100%;
        }

        .discord-btn:hover {
            background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-color) 100%);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5), 
                        0 0 40px rgba(201, 169, 97, 0.25),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(217, 191, 124, 0.6);
        }

        .discord-btn:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
        }

        .discord-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
            transition: transform var(--transition-normal);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .discord-btn:hover .discord-icon {
            transform: scale(1.15) rotate(-8deg);
        }

        .login-info {
            margin-top: var(--spacing-8);
            padding: var(--spacing-6);
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.06));
            border-radius: var(--radius-lg);
            border: 1px solid rgba(201, 169, 97, 0.25);
            text-align: center;
            backdrop-filter: blur(12px);
            position: relative;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .login-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.6), transparent);
        }

        .info-title {
            font-size: var(--font-size-sm);
            font-weight: 600;
            color: var(--accent-bright);
            margin-bottom: var(--spacing-3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-icon {
            width: 18px;
            height: 18px;
            fill: var(--accent-color);
            animation: infoFloat 3s ease-in-out infinite;
        }

        @keyframes infoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-4px) rotate(5deg); }
        }

        .info-text {
            font-size: var(--font-size-sm);
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .login-footer {
            padding: var(--spacing-8);
            border-top: 1px solid rgba(201, 169, 97, 0.2);
            text-align: center;
            background: linear-gradient(145deg, rgba(35, 35, 39, 0.7), rgba(45, 45, 49, 0.5));
            backdrop-filter: blur(12px);
        }

        .footer-text {
            font-size: var(--font-size-base);
            color: var(--text-muted);
        }

        .footer-link {
            color: var(--accent-bright);
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-normal);
            position: relative;
            display: inline-block;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-bright));
            transition: width var(--transition-normal);
            border-radius: 2px;
        }

        .footer-link:hover {
            color: var(--accent-color);
            text-shadow: 0 0 12px rgba(201, 169, 97, 0.5);
            transform: translateY(-1px);
        }

        .footer-link:hover::after {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            body {
                zoom: 0.9;
            }

            .login-container {
                margin: var(--spacing-4);
                width: calc(100% - 2 * var(--spacing-4));
                max-width: none;
            }
            
            .login-header {
                padding: var(--spacing-8) var(--spacing-6) var(--spacing-6);
            }

            .logo {
                width: 75px;
                height: 75px;
            }

            .login-title {
                font-size: var(--font-size-2xl);
            }
            
            .login-content {
                padding: var(--spacing-8) var(--spacing-6);
            }
            
            .login-footer {
                padding: var(--spacing-6);
            }

            .discord-btn {
                min-height: 52px;
                font-size: var(--font-size-base);
            }
        }

        /* High-Resolution Screens */
        @media (min-width: 1920px) {
            body {
                zoom: 0.75;
            }
        }
