/* 
  Kishok Kumar ROY - Portfolio Styles
  Theme: Cinematic Dark & Professional Media Expert
*/

:root {
    /* Colors */
    --bg-base: #0a0c10;
    --bg-surface: #14171f;
    --bg-glass: rgba(20, 23, 31, 0.6);
    --bg-glass-hover: rgba(30, 35, 45, 0.7);
    
    --text-main: #f0f4f8;
    --text-muted: #9ba5b5;
    
    --accent-primary: #00d2ff;
    --accent-primary-hover: #3a86ff;
    --accent-secondary: #ffd700; /* Gold */
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 210, 255, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --blur-glass: blur(12px);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Light Mode Variables */
.theme-light {
    --bg-base: #f5f7fa;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-glass-hover: #ffffff;
    
    --text-main: #2d3748;
    --text-muted: #4a5568;
    
    --accent-primary: #3182ce;
    --accent-primary-hover: #2b6cb0;
    --accent-secondary: #dd6b20;
    
    --border-glass: rgba(0, 0, 0, 0.1);
    --border-glow: rgba(49, 130, 206, 0.3);
    --shadow-glass: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* High Contrast Mode (OMNI) */
html.high-contrast {
    --bg-base: #000000;
    --bg-surface: #000000;
    --bg-glass: #000000;
    --bg-glass-hover: #000000;
    --text-main: #ffffff;
    --text-muted: #ffffff;
    --accent-primary: #00ffff;
    --accent-primary-hover: #00ffff;
    --border-glass: #00ffff;
    --border-glow: #00ffff;
}

/* Dyslexic Font Mode (OMNI) */
html.dyslexic-font {
    --font-heading: 'OpenDyslexic', 'Arial', sans-serif !important;
    --font-body: 'OpenDyslexic', 'Arial', sans-serif !important;
    letter-spacing: 0.1em;
    word-spacing: 0.2em;
}

/* Link Highlights (OMNI) */
html.highlight-links a, html.highlight-links button {
    outline: 3px solid #ff00ff !important;
    outline-offset: 2px !important;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.accent {
    color: var(--accent-primary);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.blur-1 {
    top: -10%;
    left: -10%;
    background: var(--accent-primary);
}

.blur-2 {
    bottom: -10%;
    right: -10%;
    background: var(--accent-secondary);
}

/* Glassmorphism Classes */
.glass {
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--border-glass);
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    color: var(--text-main);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-glass-hover);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    max-width: 1200px;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-greeting {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-name {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    height: 40px;
}

.dynamic-text {
    border-right: 2px solid var(--accent-primary);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-primary) }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
    background: var(--accent-primary-hover);
    border-color: var(--accent-primary-hover);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: var(--bg-glass-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.visual-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.2), transparent 70%);
}

.visual-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.visual-content h3 {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

/* Avatar Rings */
.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed var(--accent-primary);
    opacity: 0.5;
    pointer-events: none;
}

.ring-1 {
    width: 340px;
    height: 340px;
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-style: dotted;
    border-color: var(--accent-secondary);
    animation: spin-reverse 25s linear infinite;
}

@keyframes spin {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-reverse {
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* About Section */
.about-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.mt-4 {
    margin-top: 1rem;
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--border-glass);
}

.timeline-item {
    position: relative;
    margin-left: 50px;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    top: 24px;
    left: -40px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 4px solid var(--bg-base);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    z-index: 2;
}

.timeline-date {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.timeline-company {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-details {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-muted);
}

.timeline-details li {
    margin-bottom: 0.5rem;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.skill-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.skill-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.skill-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Education & Languages */
.edu-lang-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.column-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.edu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.edu-item {
    border-left: 2px solid var(--accent-primary);
    padding-left: 1rem;
}

.edu-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.edu-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lang-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.lang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.lang-name {
    font-weight: 600;
}

.lang-level {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-glass);
}

/* Animations (Intersection Observer) */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-visual {
        justify-content: center;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .edu-lang-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .ring-1 {
        width: 260px;
        height: 260px;
    }
    
    .ring-2 {
        width: 300px;
        height: 300px;
    }
    
    .avatar-container {
        width: 220px !important;
        height: 220px !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        margin-left: 20px;
    }
    
    .timeline-dot {
        left: -29px;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* OMNI Accessibility Panel (As requested from live site) */
.access-trigger {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    background: #0b0f19;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.access-trigger:hover {
    transform: scale(1.1);
    border-color: #00ffff;
    box-shadow: 0 4px 25px rgba(0, 255, 255, 0.4);
}

.access-panel {
    position: fixed;
    bottom: 5rem;
    right: 6rem;
    width: 350px;
    background: #0b0f19;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.access-panel.active {
    display: flex;
}

.access-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-brand-wrapper h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.access-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.access-brand-text {
    font-size: 0.75rem;
    color: #888;
}

.omni-logo {
    height: 36px;
}
.omni-logo-light {
    display: none;
}
.omni-logo-dark {
    display: block;
}

.access-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
}

.access-close-btn:hover {
    opacity: 1;
}

.access-panel-body {
    padding: 1.25rem;
    max-height: 70vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.access-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.access-control-group.toggle-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.access-control-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ddd;
}

.access-btn-group {
    display: flex;
    gap: 0.5rem;
}

.access-opt-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.access-opt-btn.active, .access-opt-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
}

.access-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.access-toggle-btn.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    color: #00ffff;
}

.access-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    width: 100%;
}

.access-select option {
    background: #0b0f19;
    color: #fff;
}

.access-reset-btn {
    margin-top: 1rem;
    background: none;
    border: 1px solid #444;
    color: #aaa;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.access-reset-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* OMNI Panel Light Mode Adjustments */
html.theme-light .omni-logo-light {
    display: block;
}
html.theme-light .omni-logo-dark {
    display: none;
}
html.theme-light .access-trigger {
    background: var(--bg-surface);
    color: var(--text-main);
    border-color: var(--border-glass);
}
html.theme-light .access-panel {
    background: var(--bg-surface);
    color: var(--text-main);
    border-color: var(--border-glass);
    box-shadow: var(--shadow-glass);
}
html.theme-light .access-panel-header {
    background: rgba(0, 0, 0, 0.03);
    border-bottom-color: var(--border-glass);
}
html.theme-light .access-close-btn, html.theme-light .access-control-label {
    color: var(--text-main);
}
html.theme-light .access-opt-btn, 
html.theme-light .access-toggle-btn, 
html.theme-light .access-select {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
}
html.theme-light .access-select option {
    background: var(--bg-surface);
    color: var(--text-main);
}
html.theme-light .access-opt-btn.active, 
html.theme-light .access-opt-btn:hover,
html.theme-light .access-toggle-btn.active,
html.theme-light .access-toggle-btn:hover {
    background: rgba(49, 130, 206, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}
html.theme-light .access-reset-btn {
    border-color: #aaa;
    color: var(--text-muted);
}
html.theme-light .access-reset-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

/* OMNI Active Features Application */
html.omni-text-large { font-size: 110%; }
html.omni-text-xlarge { font-size: 120%; }
html.omni-contrast { filter: contrast(1.2) saturate(1.2); }

/* --- iCYNK OMNI Advanced Features --- */

/* 1. Dyslexic Font */
html.omni-dyslexic * {
    font-family: 'Comic Sans MS', 'OpenDyslexic', sans-serif !important;
    letter-spacing: 0.1em !important;
    word-spacing: 0.2em !important;
    line-height: 1.6 !important;
}

/* 2. Highlight Links */
html.omni-highlight-links a, html.omni-highlight-links button {
    outline: 3px solid #00ffff !important;
    outline-offset: 3px !important;
}

/* 3. Pause Animations (Reduced Motion) */
html.omni-pause-motion * {
    animation-play-state: paused !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

/* 4. Voice Assistant (TTS) Active State */
.tts-active {
    outline: 2px dashed #00ffff !important;
    background: rgba(0, 255, 255, 0.1) !important;
    border-radius: 4px;
}

/* 5. Pointer Guide (Crosshairs) */
.omni-pointer-guide-x, .omni-pointer-guide-y {
    position: fixed;
    background: #00ffff;
    opacity: 0.6;
    pointer-events: none;
    z-index: 100000;
    display: none;
}
html.omni-pointer-guide .omni-pointer-guide-x {
    display: block;
    height: 2px;
    width: 100vw;
    left: 0;
    transform: translateY(-50%);
}
html.omni-pointer-guide .omni-pointer-guide-y {
    display: block;
    width: 2px;
    height: 100vh;
    top: 0;
    transform: translateX(-50%);
}

/* 6. Large Cursor */
html.omni-cursor-large, html.omni-cursor-large * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24"><path fill="%230b0f19" stroke="%2300ffff" stroke-width="1.5" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87c.45 0 .67-.54.35-.85L5.5 3.21z"/></svg>') 8 8, auto !important;
}

/* 7. Color Vision Filters */
html.cb-deuteranopia { filter: url('#cb-deuteranopia') !important; }
html.cb-protanopia { filter: url('#cb-protanopia') !important; }
html.cb-tritanopia { filter: url('#cb-tritanopia') !important; }
html.cb-achromatopsia { filter: url('#cb-achromatopsia') !important; }

