body { 
            font-family: 'Heebo', sans-serif; 
            background-color: #020617; /* Dark Slate 950 */
            color: #e2e8f0; /* Slate 200 */
            overflow-x: hidden; 
            -webkit-tap-highlight-color: transparent;
        }

        /* --- Accessibility Helper Class --- */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        
        /* Skip to content link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            right: 0;
            background: #3b82f6;
            color: white;
            padding: 8px;
            z-index: 99999;
            transition: top 0.3s;
            text-decoration: none;
            font-weight: bold;
            border-radius: 0 0 0 8px;
        }
        .skip-link:focus {
            top: 0;
            outline: 2px solid white;
        }

        /* Respect User Motion Preferences */
        @media (prefers-reduced-motion: reduce) {
            *, ::before, ::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Focus Styles for Accessibility */
        *:focus-visible {
            outline: 2px solid #8b5cf6;
            outline-offset: 4px;
        }

        /* --- Organic Shapes & Animations --- */
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes float-delayed {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes morph {
            0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
            100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
        }

        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-float-delay { animation: float-delayed 7s ease-in-out infinite; animation-delay: 1s; }
        .animate-morph { animation: morph 8s ease-in-out infinite alternate; }

        /* Blob Background Elements */
        .blob {
            position: absolute;
            filter: blur(60px);
            z-index: -1;
            opacity: 0.3;
        }

        /* Custom Card Styles - Dark Glass */
        .organic-card {
            background: rgba(30, 41, 59, 0.4); 
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .organic-card:hover {
            transform: translateY(-5px) scale(1.01);
            background: rgba(30, 41, 59, 0.6);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px -10px rgba(124, 58, 237, 0.15);
        }

        /* Video Card specific style */
        .video-card {
            aspect-ratio: 9/16;
            background: #0f172a;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s ease;
            outline: none; /* Focus handled by focus-visible */
        }
        .video-card:hover {
            transform: scale(1.03);
            border-color: #8b5cf6;
        }
        .video-card:focus-visible {
            transform: scale(1.03);
            border-color: #8b5cf6;
        }
        .play-overlay {
            background: rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .video-card:hover .play-overlay,
        .video-card:focus-visible .play-overlay {
            opacity: 1;
        }
        
        /* Iframe reset */
        .video-card iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Logo Styles */
        .logo-font {
            font-family: 'Heebo', sans-serif;
            font-weight: 900;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }
        .logo-pin {
            color: #EF4444;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            top: 2px;
        }

        /* Form Inputs - Dark Mode */
        .organic-input {
            border-radius: 16px;
            border: 2px solid transparent;
            background: #1e293b;
            color: white;
            transition: all 0.3s ease;
            -webkit-appearance: none; 
        }
        .organic-input:focus {
            background: #0f172a;
            border-color: #8b5cf6;
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
            outline: none; /* Handled by custom styles */
        }
        
        /* Custom Checkbox */
        .custom-checkbox {
            appearance: none;
            background-color: #1e293b;
            margin: 0;
            font: inherit;
            color: currentColor;
            width: 1.15em;
            height: 1.15em;
            border: 2px solid #475569;
            border-radius: 0.3em;
            display: grid;
            place-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .custom-checkbox::before {
            content: "";
            width: 0.65em;
            height: 0.65em;
            transform: scale(0);
            transition: 120ms transform ease-in-out;
            box-shadow: inset 1em 1em white;
            transform-origin: center;
            clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        }
        .custom-checkbox:checked {
            background-color: #3b82f6;
            border-color: #3b82f6;
        }
        .custom-checkbox:checked::before {
            transform: scale(1);
        }
        .custom-checkbox:focus-visible {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
        }

        /* Gradient Text */
        .text-gradient {
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-image: linear-gradient(to right, #60a5fa, #c084fc);
        }

        select option {
            background-color: #1e293b;
            color: white;
        }
        
        /* Modal Styles */
        .modal {
            transition: opacity 0.3s ease-in-out;
            opacity: 0;
            pointer-events: none;
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(2, 6, 23, 0.8);
            backdrop-filter: blur(5px);
        }
        .modal.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-content {
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: scale(0.95);
            transition: transform 0.3s ease-out;
            max-height: 85vh; /* Ensure modal fits on screen */
            overflow-y: auto; /* Allow internal scrolling */
        }
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        #mobile-menu {
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 40;
        }

        /* --- Cookie Banner Styles (Adapted for Dark Theme) --- */
        .cookie-overlay {
            position: fixed;
            bottom: 20px;
            right: 20px;
            max-width: 450px;
            width: calc(100% - 40px);
            background: #0f172a; /* Slate 900 */
            border: 1px solid #334155; /* Slate 700 */
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            padding: 24px;
            z-index: 9999; /* Higher index */
            display: none;
            color: #e2e8f0;
        }

        .cookie-overlay.show {
            display: block;
            animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideIn {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .cookie-overlay h2 {
            margin: 0 0 10px 0;
            font-size: 20px;
            font-weight: 700;
            color: #f8fafc;
        }

        .cookie-overlay p {
            font-size: 14px;
            color: #94a3b8; /* Slate 400 */
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Settings Panel */
        #settings-panel {
            display: none;
            margin-bottom: 20px;
            background: #1e293b; /* Slate 800 */
            padding: 15px;
            border-radius: 16px;
            border: 1px solid #334155;
        }

        #settings-panel.open {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #0f172a;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #334155;
            margin-bottom: 10px;
        }

        .option-text strong {
            display: block;
            font-size: 14px;
            color: #e2e8f0;
        }

        .option-text span {
            font-size: 12px;
            color: #64748b;
        }

        /* Agreement Box */
        .agreement-box {
            background-color: rgba(59, 130, 246, 0.1); /* Blue tint */
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .agreement-box label {
            font-size: 13px;
            color: #93c5fd; /* Blue 300 */
            cursor: pointer;
        }

        .agreement-box a {
            color: #60a5fa; /* Blue 400 */
            text-decoration: underline;
        }
        
        .agreement-box input[type="checkbox"] {
            accent-color: #3b82f6;
        }

        /* Switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
            flex-shrink: 0;
        }

        .switch input { opacity: 0; width: 0; height: 0; }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #475569;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px; 
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider { background-color: #3b82f6; } /* Blue */
        input:checked + .slider:before { transform: translateX(20px); }
        input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }
        
        /* Focus style for switch input */
        input:focus-visible + .slider {
            box-shadow: 0 0 0 2px #8b5cf6;
        }

        /* Buttons */
        .buttons-container {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            flex: 1;
            padding: 12px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .btn-confirm {
            background: linear-gradient(to right, #2563eb, #7c3aed);
            color: white;
        }
        .btn-confirm:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .btn-settings {
            background-color: #1e293b;
            color: #cbd5e1;
            border: 1px solid #334155;
        }
        .btn-settings:hover {
            background-color: #334155;
            color: white;
        }
    
        /* Hide background blobs on mobile / low quality devices */
        @media (max-width: 480px), (pointer: coarse) {
            .blob {
                display: none !important;
            }
        }
