        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--brand-bg);
            background-image: var(--brand-bg-image);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #e5e7eb;
            min-height: 100vh;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
            z-index: 0;
        }
        body > * {
            position: relative;
            z-index: 1;
        }
        /* ---- Background effect layer ---- */
        .bg-fx {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        /* Einfarbig: nothing to draw, body background shows through */
        .bg-fx--solid {
            background: transparent;
        }
        /* Farbverlauf (static gradient) */
        .bg-fx--gradient {
            background: linear-gradient(160deg, var(--fx-gradient-start), var(--fx-gradient-end));
        }
        /* Animierter Farbverlauf (aurora) */
        .bg-fx--animated_gradient {
            background: linear-gradient(130deg, var(--fx-gradient-start), var(--brand-bg), var(--fx-gradient-end), var(--fx-accent));
            background-size: 320% 320%;
            animation: bgFxGradient 22s ease infinite;
        }
        .bg-fx--animated_gradient::before,
        .bg-fx--animated_gradient::after {
            content: '';
            position: absolute;
            width: 60vmax;
            height: 60vmax;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.35;
            mix-blend-mode: screen;
        }
        .bg-fx--animated_gradient::before {
            top: -20vmax;
            left: -10vmax;
            background: radial-gradient(circle, var(--fx-accent), transparent 65%);
            animation: bgFxBlobA 24s ease-in-out infinite;
        }
        .bg-fx--animated_gradient::after {
            bottom: -22vmax;
            right: -12vmax;
            background: radial-gradient(circle, var(--fx-gradient-start), transparent 65%);
            animation: bgFxBlobB 28s ease-in-out infinite;
        }
        @keyframes bgFxGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes bgFxBlobA {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(12vmax, 10vmax) scale(1.15); }
        }
        @keyframes bgFxBlobB {
            0%, 100% { transform: translate(0, 0) scale(1.05); }
            50% { transform: translate(-14vmax, -8vmax) scale(0.9); }
        }
        /* Sternenhimmel (starfield) */
        .bg-fx--starfield {
            background: radial-gradient(ellipse at 50% 120%, var(--fx-gradient-start), var(--fx-gradient-end) 70%);
        }
        .bg-star {
            position: absolute;
            border-radius: 50%;
            background: var(--fx-accent);
            box-shadow: 0 0 6px var(--fx-accent);
            opacity: 0.7;
            animation: bgStarTwinkle var(--fx-dur, 4s) ease-in-out infinite;
        }
        @keyframes bgStarTwinkle {
            0%, 100% { opacity: 0.2; transform: scale(0.7); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        .bg-shooting-star {
            position: absolute;
            width: 2px;
            height: 2px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 8px 1px rgba(255, 255, 255, 0.8);
            opacity: 0;
            animation: bgShootingStar 7s ease-in infinite;
            animation-delay: var(--fx-delay, 3s);
        }
        .bg-shooting-star::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 120px;
            height: 1px;
            transform: translateY(-50%);
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
        }
        @keyframes bgShootingStar {
            0% { opacity: 0; transform: translate(0, 0); }
            8% { opacity: 1; }
            22% { opacity: 0; transform: translate(340px, 180px); }
            100% { opacity: 0; transform: translate(340px, 180px); }
        }
        /* Schwebende Partikel (floating orbs) */
        .bg-fx--particles {
            background: radial-gradient(ellipse at 50% 0%, var(--fx-gradient-start), var(--fx-gradient-end) 75%);
        }
        .bg-particle {
            position: absolute;
            bottom: -40px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--fx-accent), transparent 72%);
            opacity: 0;
            animation: bgFloat var(--fx-dur, 18s) linear infinite;
        }
        @keyframes bgFloat {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.55; }
            50% { transform: translateY(-52vh) translateX(24px); }
            90% { opacity: 0.55; }
            100% { transform: translateY(-108vh) translateX(-16px); opacity: 0; }
        }
        @media (prefers-reduced-motion: reduce) {
            .bg-fx--animated_gradient,
            .bg-fx--animated_gradient::before,
            .bg-fx--animated_gradient::after,
            .bg-star,
            .bg-shooting-star,
            .bg-particle,
            header::after,
            .logo-name,
            .bonus-grid .flip-card-face::after {
                animation: none !important;
            }
            .bg-shooting-star,
            .bg-particle { opacity: 0; }
            .bg-star { opacity: 0.7; }
            .bonus-grid[data-card-hover] .flip-card:hover {
                transform: none;
            }
        }
        a { color: #e2e8f0; text-decoration: none; }
        .page-title {
            margin-top: 0;
        }
        .page-title--left {
            text-align: left;
        }
        .page-title--center {
            text-align: center;
        }
        .page-title--right {
            text-align: right;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 30;
            background: var(--brand-header-bg);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 18px 24px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 24px;
            backdrop-filter: blur(12px) saturate(1.2);
            -webkit-backdrop-filter: blur(12px) saturate(1.2);
            box-shadow: 0 6px 26px rgba(2, 8, 20, 0.35);
        }
        header::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--brand-primary), #38bdf8, var(--brand-primary), transparent);
            background-size: 200% 100%;
            animation: headerShimmer 7s linear infinite;
        }
        @keyframes headerShimmer {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: bold;
            color: #f8fafc;
        }
        .logo-name {
            font-size: 20px;
            letter-spacing: 0.03em;
            padding: 6px 4px;
            border-radius: 8px;
            color: #ffffff;
            background: transparent;
            border: none;
            box-shadow: none;
            text-shadow: 0 0 12px rgba(59, 130, 246, 0.7), 0 2px 6px rgba(15, 23, 42, 0.55);
            animation: logoGlow 4.5s ease-in-out infinite;
        }
        @keyframes logoGlow {
            0%, 100% { text-shadow: 0 0 12px rgba(59, 130, 246, 0.55), 0 2px 6px rgba(15, 23, 42, 0.55); }
            50% { text-shadow: 0 0 22px rgba(59, 130, 246, 0.95), 0 0 36px rgba(56, 189, 248, 0.5), 0 2px 8px rgba(15, 23, 42, 0.55); }
        }
        .logo img {
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        .logo:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.45));
        }
        .logo-name--highlight {
            color: #ffffff;
            background: transparent;
            -webkit-background-clip: initial;
            background-clip: initial;
            text-shadow: 0 0 14px rgba(59, 130, 246, 0.75), 0 2px 8px rgba(15, 23, 42, 0.55);
        }
        .logo img {
            height: 40px;
            max-width: 160px;
        }
        nav a {
            margin-left: 20px;
            color: #f8fafc;
            font-weight: 700;
            letter-spacing: 0.02em;
            transition: color 0.2s ease;
        }
        nav a:hover {
            color: #93c5fd;
        }
        .nav-link {
            position: relative;
            padding: 6px 12px;
            border-radius: 999px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 0;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--brand-primary), #38bdf8);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease;
        }
        .nav-link:hover::after,
        .nav-link.is-active::after {
            transform: scaleX(1);
        }
        .nav-link.is-active {
            color: #f8fafc;
            background: transparent;
        }
        .admin-nav {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .admin-nav a {
            color: #fff;
            font-weight: 600;
            padding: 6px 10px;
            border-radius: 10px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .admin-nav a:hover {
            color: #e0f2fe;
            background: rgba(59, 130, 246, 0.18);
        }
        .admin-nav a.is-active {
            background: rgba(59, 130, 246, 0.35);
            box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.6);
        }
        .nav-primary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            text-align: center;
            grid-column: 2;
        }
        .nav-primary a {
            margin-left: 0;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: flex-end;
            grid-column: 3;
            justify-self: end;
        }
        .logo {
            grid-column: 1;
        }
        .nav-socials {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.7);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #f8fafc;
            font-weight: 800;
            font-size: 14px;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }
        .social-icon:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.16);
            box-shadow: 0 6px 14px rgba(2, 16, 32, 0.35);
        }
        .social-icon svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 24px;
        }
        .card {
            background: rgba(15, 23, 42, 0.85);
            border-radius: 16px;
            border: 1px solid rgba(148,163,184,0.25);
            padding: 16px;
            margin-bottom: 16px;
            color: #e2e8f0;
        }
        .btn {
            display: inline-flex;
            background: linear-gradient(180deg, var(--brand-primary), #0ea5e9);
            color: #fff;
            padding: 10px 16px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 18px rgba(0,0,0,0.2);
            filter: brightness(1.05);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #334155;
        }
        .btn-icon {
            padding: 6px 10px;
            font-size: 14px;
            line-height: 1;
            border-radius: 8px;
        }
        .btn-secondary:hover {
            filter: brightness(1.08);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.5);
            color: #f8fafc;
        }
        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
        }
        .btn-sm {
            padding: 6px 10px;
            font-size: 12px;
            border-radius: 8px;
        }
        .badge {
            display: inline-block;
            padding: 4px 8px;
            background: #1f2937;
            border-radius: 999px;
            font-size: 12px;
            color: #e2e8f0;
        }
        .grid {
            display: grid;
            gap: 16px;
        }
        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-error {
            color: #f87171;
            font-size: 13px;
            margin-top: 6px;
        }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
        }
        input, textarea, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #374151;
            border-radius: 6px;
            background: #111827;
            color: #e5e7eb;
        }
        .remember-option {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.4);
            background: rgba(15, 23, 42, 0.5);
            cursor: pointer;
            font-weight: 600;
            color: #e2e8f0;
            transition: all 0.2s ease;
            user-select: none;
            width: auto;
            margin-bottom: 0;
        }
        .remember-option:hover {
            border-color: rgba(96,165,250,0.6);
            background: rgba(15, 23, 42, 0.8);
            transform: translateY(-1px);
        }
        .remember-option input {
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(148, 163, 184, 0.5);
            border-radius: 6px;
            background: #0f172a;
            cursor: pointer;
            position: relative;
            margin: 0;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }
        .remember-option input:checked {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
        }
        .remember-option input:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 14px;
            font-weight: bold;
        }
        .remember-option span {
            line-height: 1;
        }
        footer {
            margin-top: 40px;
            padding: 24px;
            background: var(--brand-header-bg);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        footer .container {
            text-align: center;
        }
        footer .filters {
            justify-content: center;
        }
        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .filter-group {
            padding: 0;
            background: transparent;
            border: none;
            border-radius: 0;
        }
        .filter-label {
            font-weight: 700;
            letter-spacing: 0.04em;
            color: #e2e8f0;
            align-self: center;
        }
        .filter-pill {
            position: relative;
        }
        .filter-pill input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .filter-pill span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            border-radius: 12px;
            border: 2px solid rgba(148, 163, 184, 0.6);
            color: #e2e8f0;
            font-weight: 700;
            background: rgba(15, 23, 42, 0.4);
            min-width: 120px;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        }
        .filter-pill:hover span {
            transform: translateY(-2px);
            background: rgba(148, 163, 184, 0.18);
            box-shadow: 0 8px 16px rgba(2, 16, 32, 0.25);
        }
        .filter-pill input:checked + span {
            background: #e2e8f0;
            color: #0f172a;
        }
        .table {
            width: 100%;
            border-collapse: collapse;
        }
        .table th, .table td {
            border-bottom: 1px solid #1f2937;
            padding: 10px;
            text-align: left;
        }
        .table tr.dragging {
            opacity: 0.6;
        }
        .alert {
            padding: 12px;
            background: #0f766e;
            border: 1px solid #0f766e;
            border-radius: 6px;
            margin-bottom: 16px;
            color: #f0fdfa;
        }
        .alert-error {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.6);
            color: #fecaca;
        }
        .hero {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 12px 0 24px;
            margin-bottom: 12px;
            text-align: center;
            color: #f8fafc;
        }
        .bonus-grid {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .flip-card {
            perspective: 1200px;
            transition: transform 0.3s ease;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            min-height: 200px;
            transform-style: preserve-3d;
            transition: transform 0.4s ease;
            will-change: transform;
            transform: translateZ(0);
        }
        .flip-card.is-flipped .flip-card-inner {
            transform: rotateY(180deg);
        }
        .flip-card-face {
            position: absolute;
            inset: 0;
            background-color: rgba(10, 36, 64, var(--bonus-card-opacity, 1));
            background-image: radial-gradient(circle at top left,
                rgba(16, 76, 126, calc(0.7 * var(--bonus-card-opacity, 1))),
                rgba(8, 31, 52, calc(0.95 * var(--bonus-card-opacity, 1))) 55%);
            border: 1px solid rgba(255,255,255,0.45);
            border-radius: 20px;
            padding: 24px 30px;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 10px 24px rgba(2,16,32,0.3);
            overflow: hidden;
            transform: translateZ(0);
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }
        /* ---- Bonus card hover effects (admin-selectable) ---- */
        .bonus-grid[data-card-hover="lift"] .flip-card:hover {
            transform: translateY(-8px);
        }
        .bonus-grid[data-card-hover="lift"] .flip-card:hover .flip-card-face {
            box-shadow: 0 22px 42px rgba(2, 16, 32, 0.55);
        }
        .bonus-grid[data-card-hover="scale"] .flip-card:hover {
            transform: scale(1.025);
        }
        .bonus-grid[data-card-hover="scale"] .flip-card:hover .flip-card-face {
            box-shadow: 0 18px 36px rgba(2, 16, 32, 0.5);
        }
        .bonus-grid[data-card-hover="glow"] .flip-card:hover .flip-card-face {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 1px var(--brand-primary), 0 0 26px rgba(56, 189, 248, 0.5), 0 14px 30px rgba(2, 16, 32, 0.5);
        }
        .bonus-grid[data-card-hover="shine"] .flip-card-face::after {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 45%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
            transform: skewX(-20deg);
            pointer-events: none;
            opacity: 0;
        }
        .bonus-grid[data-card-hover="shine"] .flip-card:hover .flip-card-face::after {
            animation: cardShine 0.9s ease;
        }
        @keyframes cardShine {
            0% { left: -75%; opacity: 0; }
            15% { opacity: 1; }
            100% { left: 125%; opacity: 0; }
        }
        .flip-card-front {
            justify-content: center;
            gap: 16px;
        }
        .bonus-flame {
            position: absolute;
            top: 16px;
            left: 16px;
            font-size: 22px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
        }
        .flip-card-back {
            transform: rotateY(180deg);
        }
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }
        .bonus-back-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
            gap: 26px;
            height: 100%;
        }
        .bonus-back-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
            word-break: break-word;
        }
        .bonus-back-details h3 {
            color: #7dd3fc;
            font-size: 20px;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .bonus-back-details h3::before {
            content: "✔";
            font-size: 16px;
            color: #38bdf8;
            border: 2px solid #38bdf8;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .bonus-back-details .bonus-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
            color: #e2e8f0;
        }
        .bonus-back-details .bonus-list li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .bonus-back-details .bonus-list li::before {
            content: "›";
            color: #f8fafc;
            font-size: 20px;
            line-height: 1;
        }
        .bonus-back-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            padding-right: 16px;
            padding-left: 8px;
            padding-bottom: 12px;
        }
        .bonus-row {
            display: grid;
            grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(110px, 1fr)) auto;
            gap: 22px;
            align-items: center;
        }
        .bonus-brand {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
            text-align: center;
        }
        .bonus-logo {
            max-height: 56px;
            max-width: 180px;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        .bonus-code {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            letter-spacing: 0.03em;
            color: #fcd34d;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(234, 179, 8, 0.18);
            border: 1px solid rgba(234, 179, 8, 0.5);
            box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
        }
        .bonus-actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
            padding-right: 4px;
        }
        .bonus-actions-vertical {
            width: 100%;
            flex-direction: column;
            align-items: stretch;
        }
        .bonus-actions-vertical .btn {
            width: 100%;
            justify-content: center;
        }
        .bonus-metric {
            text-align: center;
        }
        .bonus-metric strong {
            display: block;
            font-size: 20px;
            font-weight: 700;
        }
        .bonus-metric span {
            display: block;
            font-size: 14px;
            color: #dbeafe;
        }
        .bonus-info-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            letter-spacing: 0.03em;
        }
        .info-btn {
            border: 2px solid rgba(79, 176, 255, 0.6);
            background: rgba(15, 38, 62, 0.95);
            color: #e2f2ff;
            border-radius: 999px;
            width: 34px;
            height: 34px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(3,21,38,0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }
        .info-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            display: block;
            shape-rendering: geometricPrecision;
        }
        .info-btn:hover {
            transform: translateY(-2px);
            background: rgba(79, 176, 255, 0.15);
            border-color: rgba(79, 176, 255, 0.9);
            box-shadow: 0 10px 18px rgba(3,21,38,0.4);
        }
        .bonus-back-actions .info-btn {
            align-self: flex-end;
        }
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }
        .bonus-back-actions .payment-methods {
            justify-content: flex-end;
            margin-top: 0;
        }
        .payment-list {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .payment-chip {
            width: 52px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.12);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .payment-chip:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.16);
            box-shadow: 0 8px 14px rgba(2, 16, 32, 0.25);
        }
        .payment-chip svg {
            width: 28px;
            height: 28px;
        }
        .payment-heading {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2f9bff;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .payment-heading svg {
            width: 20px;
            height: 20px;
        }
        .editor-columns {
            --column-count: 2;
            display: grid;
            grid-template-columns: repeat(var(--column-count), minmax(0, 1fr));
            gap: 16px;
            align-items: start;
            margin: 12px 0;
        }
        .editor-column {
            min-height: 60px;
        }
        .editor-column img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .admin-view .editor-columns {
            padding: 12px;
            border-radius: 12px;
            border: 1px dashed rgba(148,163,184,0.3);
        }
        .admin-view .editor-column {
            padding: 10px;
            border-radius: 10px;
            border: 1px dashed rgba(148,163,184,0.25);
            background: rgba(15, 23, 42, 0.4);
        }
        .admin-view .editor-columns--guides {
            background-image: linear-gradient(90deg, rgba(148,163,184,0.18) 1px, transparent 1px),
                linear-gradient(180deg, rgba(148,163,184,0.18) 1px, transparent 1px);
            background-size: 32px 32px;
            background-position: -1px -1px;
        }
        .admin-view .editor-columns--guides .editor-column {
            border-color: rgba(125, 211, 252, 0.6);
            background: rgba(30, 41, 59, 0.6);
            box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.35);
        }
        .form-section {
            padding: 18px;
            border-radius: 14px;
            border: 1px solid rgba(148,163,184,0.3);
            background: rgba(15, 23, 42, 0.6);
            margin-bottom: 20px;
        }
        .form-section h3 {
            margin-top: 0;
            margin-bottom: 14px;
            font-size: 18px;
            color: #93c5fd;
        }
        .admin-toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
        }
        .admin-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .admin-card {
            background: rgba(15, 23, 42, 0.75);
            border-radius: 16px;
            border: 1px solid rgba(148,163,184,0.3);
            padding: 18px;
        }
        .admin-muted {
            color: #94a3b8;
        }
        .form-help {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: #94a3b8;
        }
        .form-note {
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(15, 23, 42, 0.8);
            border: 1px dashed rgba(148,163,184,0.4);
            color: #cbd5f5;
        }
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 10px;
            margin-top: 8px;
        }
        .checkbox-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(148,163,184,0.3);
            background: rgba(15, 23, 42, 0.55);
        }
        .checkbox-pill input {
            margin: 0;
        }
        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 12px;
            margin-top: 8px;
        }
        .payment-option {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(148,163,184,0.28);
            background: rgba(15, 23, 42, 0.6);
            color: #e2e8f0;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
        }
        .payment-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .payment-option-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .payment-option-check {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            border: 1px solid rgba(148,163,184,0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: transparent;
            background: rgba(15, 23, 42, 0.6);
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .payment-option:hover {
            transform: translateY(-1px);
            border-color: rgba(96,165,250,0.7);
            box-shadow: 0 8px 16px rgba(2, 16, 32, 0.25);
            background: rgba(30, 41, 59, 0.7);
        }
        .payment-option input:checked ~ .payment-option-check {
            color: #0f172a;
            border-color: rgba(125, 211, 252, 0.9);
            background: linear-gradient(135deg, rgba(125, 211, 252, 0.9), rgba(96, 165, 250, 0.9));
        }
        .payment-option input:checked ~ .payment-option-label {
            color: #e0f2fe;
        }
        .editor-image-controls {
            margin-top: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(148,163,184,0.35);
            background: rgba(15, 23, 42, 0.8);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .editor-image-group {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .editor-image-label {
            font-size: 12px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .editor-image-controls input[type="range"] {
            accent-color: #60a5fa;
        }
        .editor-image-value {
            font-size: 12px;
            color: #e2e8f0;
            min-width: 40px;
        }
        .editor-image-group label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #cbd5e1;
        }
        .wysiwyg-editor img {
            max-width: 100%;
            height: auto;
        }
        .wysiwyg-editor img.align-left,
        .wysiwyg-editor video.align-left {
            float: left;
            margin: 0 14px 12px 0;
        }
        .wysiwyg-editor img.align-center,
        .wysiwyg-editor video.align-center {
            display: block;
            margin: 0 auto 12px;
            float: none;
        }
        .wysiwyg-editor img.align-right,
        .wysiwyg-editor video.align-right {
            float: right;
            margin: 0 0 12px 14px;
        }
        .wysiwyg-editor video {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 0 12px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 18px;
            }
            nav a {
                margin-left: 0;
            }
            header {
                grid-template-columns: 1fr;
                align-items: stretch;
                padding: 16px;
                text-align: center;
            }
            .logo {
                justify-content: center;
            }
            .nav-primary {
                justify-content: center;
                flex-wrap: wrap;
            }
            .logo-name {
                font-size: 24px;
            }
            .logo-name--highlight {
                font-size: 28px;
            }
            .nav-actions {
                width: 100%;
                justify-content: center;
                gap: 12px;
            }
            .nav-socials {
                justify-content: center;
                flex-wrap: wrap;
            }
            .filters {
                justify-content: center;
                overflow-x: visible;
                padding-bottom: 8px;
                gap: 10px;
            }
            .filter-label {
                width: 100%;
                text-align: center;
            }
            .filter-pill span {
                min-width: 110px;
                padding: 10px 14px;
                font-size: 13px;
            }
            .hero {
                text-align: left;
            }
            .bonus-row {
                grid-template-columns: 1fr;
                text-align: left;
                gap: 16px;
            }
            .bonus-metric {
                text-align: left;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 12px;
                background: rgba(15, 23, 42, 0.55);
                border-radius: 12px;
            }
            .bonus-metric strong {
                font-size: 18px;
            }
            .bonus-brand {
                padding-left: 0;
                align-items: center;
                text-align: center;
            }
            .bonus-logo {
                max-width: 140px;
                margin: 0 auto;
            }
            .bonus-actions {
                width: 100%;
                justify-content: flex-start;
            }
            .bonus-actions .btn {
                flex: 1 1 auto;
            }
            .bonus-back-layout {
                grid-template-columns: 1fr;
            }
            .bonus-back-actions {
                align-items: stretch;
            }
            .bonus-back-actions .payment-methods {
                justify-content: flex-start;
            }
            .bonus-actions-vertical .btn {
                width: 100%;
            }
            .flip-card-face {
                padding: 18px;
            }
            .editor-columns {
                grid-template-columns: 1fr;
            }
            footer .container {
                text-align: center;
            }
            footer .filters {
                justify-content: center;
            }
        }
    
