* {
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
        }

        .storage-notice {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            padding: 12px 16px;
            background: rgba(8, 20, 38, 0.96);
            border-bottom: 1px solid rgba(255,255,255,0.10);
            backdrop-filter: blur(10px);
        }

        .storage-notice-inner {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .storage-notice-copy {
            color: #cbd5e1;
            line-height: 1.6;
            font-size: 14px;
        }

        .storage-notice-copy a {
            color: #5cc8ff;
            font-weight: 700;
            text-decoration: none;
        }

        .storage-notice-copy a:hover {
            text-decoration: underline;
        }

        .storage-notice-close {
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.08);
            color: white;
            padding: 10px 16px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            flex-shrink: 0;
        }

        .storage-notice-close:hover {
            background: rgba(255,255,255,0.14);
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 24px;
        }

        .lang-strip {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .logo {
            font-size: 22px;
	    font-weight:bold;
        }

	.tm {
	    font-size: 11px;
	    vertical-align: super;
	    margin-left: 2px;
	}

        .nav-links {
            display: flex;
            gap: 12px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            padding: 10px 16px;
            border-radius: 10px;
            transition: 0.2s ease;
        }

        a.lang-flag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 26px;
            padding: 0;
            border: 1px solid rgba(255,255,255,0.14);
            background: transparent;
            border-radius: 8px;
            line-height: 1;
            transition: 0.2s ease;
        }

        a.lang-flag:hover {
            background: rgba(255,255,255,0.12);
        }

        a.lang-flag-active {
            border-color: rgba(255,255,255,0.34);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
        }

        .flag-icon {
            display: block;
            width: 20px;
            height: 14px;
            border-radius: 3px;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
        }

        .flag-en {
            background:
                linear-gradient(90deg, transparent 0 42%, #c8102e 42% 58%, transparent 58% 100%),
                linear-gradient(transparent 0 38%, #c8102e 38% 62%, transparent 62% 100%),
                linear-gradient(90deg, transparent 0 36%, #ffffff 36% 64%, transparent 64% 100%),
                linear-gradient(transparent 0 30%, #ffffff 30% 70%, transparent 70% 100%),
                #012169;
        }

        .flag-de {
            background: linear-gradient(
                to bottom,
                #111111 0 33.33%,
                #dd0000 33.33% 66.66%,
                #ffce00 66.66% 100%
            );
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.08);
        }

        .btn-primary {
            background: #38bdf8;
            color: #0f172a !important;
            font-weight: bold;
        }

	.btn-primary:hover {
            background: #0ea5e9;
        }

        .btn-secondary {
            background: rgba(255,255,255,0.08);
            color: white;
            border: 1px solid rgba(255,255,255,0.12);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.12);
        }

        /* Optional: allgemeine Cards */
        .card, .box {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 18px;
            padding: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        }

        .wrapper {
            width: 100%;
            max-width: 800px;
            margin: 60px auto 0;
        }

        @media (max-width: 768px) {
            .storage-notice-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav {
                flex-direction: column;
                gap: 16px;
            }

            .lang-strip {
                margin-bottom: 14px;
            }

            .nav-links {
                justify-content: center;
                flex-wrap: wrap;
                gap: 8px;
            }

            .nav-links a {
                padding: 8px 12px;
                font-size: 14px;
            }
        }
