/* ============================================
   SCI-FI — Deep Space
   Fonts: Exo 2 (display) + Fira Code (mono accents)
   ============================================ */

:root {
    --sf-bg: #050510;
    --sf-bg-panel: rgba(10, 15, 40, 0.7);
    --sf-text: #C8D6E5;
    --sf-text-light: #8899AA;
    --sf-text-muted: #556677;
    --sf-cyan: #00D4FF;
    --sf-violet: #8B5CF6;
    --sf-cyan-dim: rgba(0, 212, 255, 0.15);
    --sf-violet-dim: rgba(139, 92, 246, 0.15);
    --sf-glow-cyan: 0 0 20px rgba(0, 212, 255, 0.3);
    --sf-glow-violet: 0 0 20px rgba(139, 92, 246, 0.3);
    --sf-border: rgba(0, 212, 255, 0.15);
    --sf-gradient: linear-gradient(135deg, #00D4FF, #8B5CF6);
}

body {
    font-family: 'Exo 2', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--sf-text);
    background: var(--sf-bg);
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(0, 212, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 15%, rgba(139, 92, 246, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 75%, rgba(255,255,255,0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 55%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 25%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 90%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 30%, rgba(255,255,255,0.35) 0%, transparent 100%);
    background-attachment: fixed;
}

/* Scanline overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}

h1, h2, h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #E8F0FF;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes holo-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sf-border);
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-inner { padding: 0 48px; }
}

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sf-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transition: all 0.3s;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.4);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
}

.desktop-nav a {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sf-text-light);
    transition: all 0.3s;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--sf-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--sf-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.nav-themes {
    color: var(--sf-violet);
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
}

@media (min-width: 768px) {
    .mobile-toggle { display: none; }
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sf-cyan);
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-checkbox:checked ~ .site-header .mobile-toggle span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-checkbox:checked ~ .site-header .mobile-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-checkbox:checked ~ .site-header .mobile-toggle span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-checkbox:checked ~ .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-nav a {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--sf-text);
    padding: 12px 28px;
    min-height: 56px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    border-radius: 4px;
}

.mobile-nav a:hover {
    color: var(--sf-cyan);
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    border-color: var(--sf-border);
    background: var(--sf-cyan-dim);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 80px 0 48px;
    position: relative;
}

@media (min-width: 768px) {
    .hero { padding: 100px 0 64px; }
}

.hero::before {
    content: "";
    position: absolute;
    top: 30%;
    right: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-label {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sf-violet);
    margin-bottom: 20px;
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: var(--sf-violet-dim);
}

.hero-title {

    font-family: 'Exo 2', sans-serif;
    font-size: clamp(20px, 5.5vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    color: #E8F0FF;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    letter-spacing: -0.02em;
}

.hero-suffix {
    font-family: 'Fira Code', monospace;
    font-size: 0.2em;
    color: var(--sf-text-muted);
    display: inline;
    margin-top: 12px;
    letter-spacing: 0.1em;
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--sf-text-light);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary {
    background: transparent;
    color: var(--sf-cyan);
    border-color: var(--sf-cyan);
    box-shadow: var(--sf-glow-cyan), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.btn-primary:hover {
    background: var(--sf-cyan-dim);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--sf-violet);
    border-color: rgba(139, 92, 246, 0.4);
}

.btn-secondary:hover {
    background: var(--sf-violet-dim);
    border-color: var(--sf-violet);
    box-shadow: var(--sf-glow-violet);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 12px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 56px 0;
}

@media (min-width: 768px) {
    .section { padding: 72px 0; }
}

.section-heading {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sf-cyan);
    margin-bottom: 32px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

/* ============================================
   SERVICES GRID (index)
   ============================================ */
.services-section {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px;
    background: var(--sf-bg-panel);
    border: 1px solid var(--sf-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sf-gradient);
    background-size: 200% 100%;
    animation: holo-shift 4s ease infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08), inset 0 0 30px rgba(0, 212, 255, 0.02);
    transform: translateY(-4px);
}

.service-number {
    font-family: 'Fira Code', monospace;
    font-size: 36px;
    font-weight: 400;
    color: var(--sf-text-muted);
    line-height: 1;
}

.service-card:hover .service-number {
    color: var(--sf-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.service-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #E8F0FF;
}

.service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--sf-text-light);
    line-height: 1.7;
}

.service-arrow {
    font-size: 20px;
    color: var(--sf-text-muted);
    transition: all 0.3s;
}

.service-card:hover .service-arrow {
    color: var(--sf-cyan);
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* ============================================
   SERVICES LIST (sluzby page)
   ============================================ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: var(--sf-bg-panel);
    border: 1px solid var(--sf-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .service-row {
        grid-template-columns: auto 1fr 1fr auto;
        gap: 32px;
    }
}

.service-row:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.06);
}

.service-row .service-number {
    font-family: 'Fira Code', monospace;
    font-size: clamp(20px, 5.5vw, 40px);
    color: var(--sf-text-muted);
}

.service-row:hover .service-number {
    color: var(--sf-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.service-row-info {
    padding-top: 0;
}

.service-row-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(20px, 5.5vw, 22px);
    font-weight: 700;
    color: #E8F0FF;
    margin-bottom: 4px;
}

.service-row-sub {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--sf-text-muted);
}

.service-row-text {
    display: none;
}

@media (min-width: 768px) {
    .service-row-text {
        display: block;
        font-size: 14px;
        font-weight: 300;
        color: var(--sf-text-light);
        line-height: 1.6;
    }
}

.service-row .service-arrow {
    font-size: 20px;
    color: var(--sf-text-muted);
    transition: all 0.3s;
}

.service-row:hover .service-arrow {
    color: var(--sf-cyan);
    transform: translateX(6px);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--sf-border);
}

@media (min-width: 768px) {
    .page-header { padding: 72px 0 48px; }
}

.page-label {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sf-violet);
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: var(--sf-violet-dim);
}

.page-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(20px, 5.5vw, 52px);
    font-weight: 900;
    color: #E8F0FF;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.page-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: var(--sf-text-light);
    max-width: 520px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sf-text-muted);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--sf-cyan);
    transition: all 0.3s;
}

.breadcrumb a:hover {
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* ============================================
   DETAIL LAYOUT
   ============================================ */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .detail-layout {
        grid-template-columns: 1fr 280px;
        gap: 64px;
    }
}

.detail-main p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--sf-text-light);
    margin-bottom: 20px;
}

.detail-main h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #E8F0FF;
    margin-top: 8px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

.detail-main a {
    color: var(--sf-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 212, 255, 0.3);
    text-underline-offset: 4px;
    transition: all 0.3s;
}

.detail-main a:hover {
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
    text-decoration-color: var(--sf-cyan);
}

.lead-text {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--sf-text);
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 2px solid var(--sf-cyan);
    box-shadow: -2px 0 12px rgba(0, 212, 255, 0.15);
}

/* Sidebar */
.detail-sidebar {
    position: relative;
}

.sidebar-card {
    background: var(--sf-bg-panel);
    border: 1px solid var(--sf-border);
    padding: 28px;
    position: sticky;
    top: 96px;
    backdrop-filter: blur(10px);
}

.sidebar-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sf-cyan);
    margin-bottom: 12px;
}

.sidebar-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--sf-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Info list */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list dt {
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--sf-violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.info-list dd {
    font-size: 14px;
    color: var(--sf-text);
    line-height: 1.5;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-list {
    max-width: 640px;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    border: 1px solid var(--sf-border);
    background: var(--sf-bg-panel);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .contact-row {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        gap: 24px;
    }
}

a.contact-row:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
}

.contact-row--static {
    opacity: 0.8;
}

.contact-label {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sf-text-muted);
    min-width: 160px;
    flex-shrink: 0;
}

.contact-value {
    font-size: 16px;
    color: var(--sf-text);
    line-height: 1.5;
}

a.contact-row .contact-value {
    color: var(--sf-cyan);
}

a.contact-row:hover .contact-value {
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 72px 0 80px;
    border-top: 1px solid var(--sf-border);
    position: relative;
}

@media (min-width: 768px) {
    .cta-section { padding: 96px 0 104px; }
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.04), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(20px, 5.5vw, 48px);
    font-weight: 900;
    color: #E8F0FF;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    position: relative;
}

.cta-desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--sf-text-light);
    margin-bottom: 32px;
    max-width: 440px;
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: rgba(3, 3, 12, 0.95);
    color: var(--sf-text);
    margin-top: auto;
    border-top: 1px solid var(--sf-border);
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 24px 40px;
}

@media (min-width: 768px) {
    .footer-inner { padding: 64px 48px 40px; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: var(--sf-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--sf-text-muted);
    line-height: 1.5;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-heading {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sf-violet);
    margin-bottom: 8px;
}

.footer-col p, .footer-col a {
    font-size: 13px;
    font-weight: 300;
    color: var(--sf-text-muted);
    line-height: 1.5;
}

.footer-col a {
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--sf-cyan);
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.3);
}

.footer-spacer {
    height: 8px;
}

.footer-muted {
    font-size: 12px;
    color: #334455;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: #334455;
    padding-top: 24px;
    border-top: 1px solid var(--sf-border);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sf-bg); }
::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--sf-cyan); }

/* Custom cursor - UFO */
body { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ctext y='22' font-size='22'%3E🛸%3C/text%3E%3C/svg%3E") 14 14, default; }
a, button, label, .btn, .service-card, .service-row, .contact-row { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ctext y='22' font-size='22'%3E👽%3C/text%3E%3C/svg%3E") 14 14, pointer; }

/* Cookie consent - themed */
.cookie-consent { border-top: 1px solid currentColor; }
.cookie-consent { background: rgba(0,0,0,0.95); color: #ccc; }
.cookie-consent-text { color: #aaa; }
