        :root {
            --primary: #9D00FF;
            --bg-main: #121212;
            --bg-secondary: #1a1a1a;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --border-tech: 1px solid rgba(157, 0, 255, 0.2);
        }
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-light);
            line-height: 1.6;
            padding: 40px 20px;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-secondary);
            padding: 40px;
            border-radius: 8px;
            border: var(--border-tech);
        }
        h1 { color: var(--primary); text-transform: uppercase; margin-bottom: 30px; text-align: center; }
        h3 { color: var(--text-light); margin-top: 25px; margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 5px; }
        p, li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }
        .owner::after {content: "Filip Havlíček";}
        .ico::after {content: "099 54 686";}
        .address::after {content: "Uralská 689/7, 160 00 Praha 6";}
        strong { color: white; }
        .back-btn {
            display: inline-block;
            margin-bottom: 20px;
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }
        .back-btn:hover { text-decoration: underline; }
        .cookie-settings-link { border: 0; padding: 0; background: transparent; color: var(--primary); font: inherit; font-weight: bold; cursor: pointer; }
        .cookie-settings-link:hover { text-decoration: underline; }
        .cookie-consent { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 10000; max-width: 920px; margin: 0 auto; padding: 18px; color: #fff; background: #171717; border: 1px solid rgba(157, 0, 255, 0.55); border-radius: 10px; box-shadow: 0 16px 50px rgba(0,0,0,0.65); }
        .cookie-consent[hidden] { display: none; }
        .cookie-consent-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
        .cookie-consent-copy { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }
        .cookie-consent-copy strong { display: block; margin-bottom: 4px; color: #fff; }
        .cookie-consent-copy a { color: #fff; }
        .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 0 0 360px; }
        .cookie-choice { min-height: 44px; border: 1px solid var(--primary); border-radius: 5px; background: rgba(157,0,255,0.12); color: #fff; font-weight: 800; cursor: pointer; }
        .cookie-choice:hover { background: rgba(157,0,255,0.28); }
        @media (max-width: 760px) { .cookie-consent-inner { align-items: stretch; flex-direction: column; } .cookie-consent-actions { width: 100%; flex-basis: auto; } }

        .legal-inline-link { color: #fff; text-decoration: underline; }
        .legal-back { text-align: center; margin-top: 20px; }
        @media (max-width: 760px) {
            body { padding: 20px 12px; }
            .container { padding: 24px 18px; }
            .cookie-consent {
                top: max(12px, env(safe-area-inset-top));
                bottom: auto;
                left: 8px;
                right: 8px;
                max-height: calc(100dvh - 24px);
                padding: 12px;
                overflow-y: auto;
            }
            .cookie-consent-inner { gap: 10px; }
            .cookie-consent-copy { font-size: 0.78rem; line-height: 1.35; }
            .cookie-consent-actions { gap: 8px; }
            .cookie-choice { min-height: 40px; padding: 8px; }
        }
