:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --accent-red: #ff0000;
    --muted-gray: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 120px;
    --container-padding: 4vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none;
    }
}

body {
    background: radial-gradient(circle at center, #2a2a2a 0%, #000000 100%);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.4;
    position: relative;
    min-height: 100vh;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' %3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4' /%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

/* --- Typography --- */

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--accent-red);
}

.italic {
    font-style: italic;
    font-family: var(--font-body);
    font-weight: 300;
}

.normal {
    font-style: normal;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--accent-red);
    text-transform: uppercase;
    display: none; /* Hidden on Desktop */
    margin-bottom: 2rem;
}

.large-text {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1;
    max-width: 90%;
}

.desc-text {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--muted-gray);
    max-width: 600px;
    margin-top: 3rem;
}

/* --- Layout --- */

.container {
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: 10rem 0;
}

/* --- Navigation --- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem var(--container-padding);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    gap: 2rem;
}

.nav-pillar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pillar-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red);
}

.header-center {
    display: flex;
    justify-content: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem; /* Tighter gap for better alignment */
}

.knight-logo {
    width: 32px; /* Synced better with text size */
    height: 32px;
    color: var(--accent-red);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-red); /* Changed to Red */
}

.header-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-heading);
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    z-index: 2001;
}

.menu-burger {
    width: 30px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-burger span {
    width: 100%;
    height: 1px;
    background: var(--text-white);
    transition: transform 0.3s ease;
}

.location {
    color: var(--muted-gray);
    font-size: 0.6rem;
}

/* --- Hero Section --- */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vh;
    height: 80vh;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    opacity: 0; /* Hidden by default to prevent flashing during load */
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8vh;
}

.hero-text-block {
    position: relative;
    padding: 3rem 4rem;
    text-align: center;
    background: transparent;
    border: 1px solid var(--border-color);
}

/* Corner Markers */
.marker {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--text-white);
    border-style: solid;
    opacity: 0.8;
}

.top-left { top: 0; left: 0; border-width: 1px 0 0 1px; }
.top-right { top: 0; right: 0; border-width: 1px 1px 0 0; }
.bottom-left { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.bottom-right { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.hero-name {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--accent-red); /* Changed to Red */
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: none;
    font-weight: 400;
}

.hero-year {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.floating-cta {
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0; /* Hidden initially for preloader */
    pointer-events: none;
    z-index: 15;
}

.cta-circle {
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-circle:hover {
    background: var(--accent-red);
    transform: scale(1.1);
}

/* --- Perspective --- */

.perspective {
    position: relative;
    overflow: hidden;
}

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

/* --- Works (Horizontal) --- */

.works-wrapper {
    background: #0a0a0a;
    overflow: hidden;
}

.works-container {
    display: flex;
    width: 300vw;
    height: 100vh;
}

.work-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10vw;
}

.work-img-wrap {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    background: #ffffff; /* Logos often look better on white or light backgrounds */
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    /* Grayscale removed to show original brand colors */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-img.cover-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-item:hover .work-img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.work-details {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.work-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--muted-gray);
}

.work-title {
    font-size: clamp(2rem, 4vw, 5rem);
}

/* --- Footer --- */

.footer {
    background: var(--accent-red);
    color: var(--text-white);
    position: relative;
    padding-bottom: 2rem;
}

.footer-top {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.footer-marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-inner {
    display: flex;
    align-items: center; /* vertically center ∞ symbol with ALFRED JAMES text */
    animation: marquee 20s linear infinite;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 15rem);
    font-weight: 900;
    margin-right: 5vw;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-symbol {
    width: clamp(5rem, 12vw, 12rem);
    height: clamp(5rem, 12vw, 12rem);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center; /* snap to vertical midpoint of the flex row */
    flex-shrink: 0;
    margin-right: 5vw;
}

.footer-symbol svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 5rem var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.col-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    opacity: 0.6;
}

.col-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: clamp(1.2rem, 2vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 600;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    width: fit-content;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* --- Preloader (Ravi inspired) --- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding: var(--container-padding);
}

.preloader-brand-elements {
    position: absolute;
    bottom: 5vh;
    left: var(--container-padding);
    right: var(--container-padding);
    height: 10vw; /* Match font-size of brand-item so alignment is exact */
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Center all items (A, ∞, J) on the same vertical axis */
}

.brand-item {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 10vw;
    font-weight: 700;
    color: var(--accent-red); /* Changed to Red */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    will-change: transform, font-size;
}

/* Aligned like a word with visually equal spacing (accounting for J's narrow width) */
.brand-a {
    right: 22vw;
}

.brand-infinity {
    right: 9vw;
    width: 8vw;  /* Sized to match visual cap-height of the 10vw font letters */
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-j {
    right: 0;
}

@media (max-width: 768px) {
    .preloader-brand-elements {
        position: absolute;
        left: var(--container-padding);
        right: var(--container-padding);
        bottom: 5vh; /* Nudged lower as requested */
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .brand-item {
        position: relative;
        right: auto !important;
        left: auto !important;
        margin: 0 1vw; /* Initial cluster margin */
        font-size: 15vw;
    }
    .brand-infinity {
        width: 12vw;  /* Match visual cap-height of 15vw mobile font */
        height: 12vw;
        margin: 0 2vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.brand-infinity svg {
    width: 100%;
    height: 100%;
}

/* Glitch Square Removed */

/* --- Custom Cursor --- */

.cursor {
    width: 8px;
    height: 8px;
    background: #7A0F1D;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid #7A0F1D;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out;
}

/* --- Responsive --- */

/* --- Mobile Navigation Overlay --- */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    z-index: 2000;
    display: flex;
    align-items: center;
    padding: var(--container-padding);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mob-link {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.mobile-nav-footer {
    position: absolute;
    bottom: 2rem;
    left: var(--container-padding);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-footer a {
    color: var(--muted-gray);
    text-decoration: none;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .header-time {
        display: none;
    }
}

@media (max-width: 768px) {
    /* --- Header --- */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem var(--container-padding);
    }
    .header {
        padding: 0.8rem var(--container-padding);
    }
    .nav-pillar, .header-time {
        display: none;
    }
    .section-label {
        display: block;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    /* --- Hero: remove border box on mobile, keep name & tagline --- */
    .hero-image-wrapper {
        display: none !important;
    }
    .hero-text-block {
        border: none !important;          /* remove the rectangular border box */
        background: transparent !important;
        padding: 2rem 1.5rem;
    }
    /* Hide only the corner marker elements (the box corners) */
    .hero-text-block .marker {
        display: none !important;
    }
    .hero-content {
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
    }
    .hero-section {
        height: 100svh; /* safe viewport height on mobile */
    }
    .floating-cta {
        display: none !important;
    }
    .hero-name {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .hero-tagline {
        font-size: clamp(1rem, 4.5vw, 1.3rem);
    }

    /* --- Perspective Section --- */
    .section-padding {
        padding: 4rem 0;
    }
    .perspective-grid {
        grid-template-columns: 1fr;
        padding: 0 6vw;
        gap: 1.5rem;
    }
    .large-text {
        font-size: clamp(1.8rem, 7vw, 3rem);
        max-width: 100%;
    }
    .desc-text {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    /* --- Works Section: vertical stack on mobile --- */
    .works-container {
        flex-direction: column;
        width: 100vw;
        height: auto;
    }
    .work-item {
        width: 100vw;
        height: auto;
        padding: 3rem 6vw;
    }
    .work-img-wrap {
        height: 35vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .work-title {
        font-size: clamp(1.5rem, 7vw, 3rem);
    }
    .work-details {
        margin-top: 1rem;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 6vw;
    }
    .footer-content {
        padding: 3rem var(--container-padding);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.6rem;
    }
    .footer-link {
        font-size: clamp(1rem, 5vw, 1.8rem);
    }
    .footer-top {
        padding: 2rem 0;
    }
    .footer-name {
        font-size: clamp(3.5rem, 18vw, 8rem);
    }

    /* --- Mobile Nav Overlay --- */
    .mob-link {
        font-size: 2.2rem;
    }

    /* --- Preloader --- */
    .preloader-brand-elements {
        justify-content: center;
    }
}

/* --- Bottom Navigation Bar --- */
.bottom-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 1000;
    width: auto;
    min-width: 400px;
    background: #ff0000;
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid #000000;
}

.bottom-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.bottom-bar-container {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.bb-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bb-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.home-btn {
    padding: 0.75rem;
}

.bb-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.bb-toggle-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Sound Wave Animation */
.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.sound-wave span {
    display: block;
    width: 2px;
    background: #fff;
    height: 100%;
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.sound-btn.playing .sound-wave span {
    animation: wave 1s ease-in-out infinite alternate;
}

.sound-btn.playing .sound-wave span:nth-child(2) { animation-delay: 0.2s; }
.sound-btn.playing .sound-wave span:nth-child(3) { animation-delay: 0.4s; }
.sound-btn.playing .sound-wave span:nth-child(4) { animation-delay: 0.1s; }

@keyframes wave {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

/* --- Directory Overlay --- */
.directory-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 4rem 2rem;
}

.directory-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 600px;
}

.directory-tile {
    position: relative;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.directory-tile:hover {
    background: #ff0000;
}

.tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff0000;
    transform: translateY(101%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.directory-tile:hover .tile-bg {
    transform: translateY(0);
}

.tile-content {
    position: relative;
    z-index: 1;
}

.tile-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    display: block;
}

.tile-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.social-tile .tile-title {
    font-size: 1.5rem;
}

/* Corner Markers for Tiles */
.tile-marker {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    z-index: 2;
    opacity: 0.3;
}

.tile-marker.top-left { top: 1rem; left: 1rem; }
.tile-marker.top-right { top: 1rem; right: 1rem; }
.tile-marker.bottom-left { bottom: 1rem; left: 1rem; }
.tile-marker.bottom-right { bottom: 1rem; right: 1rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
    /* --- Bottom Bar --- */
    .bottom-bar {
        width: calc(100% - 2rem);
        min-width: 0;
        bottom: 1rem;
        padding: 0.4rem;
        border-radius: 0.5rem;
    }
    .bottom-bar-container {
        justify-content: space-between;
        gap: 0.3rem;
    }
    .bb-btn {
        padding: 0.75rem 1rem;
        font-size: 0.6rem;
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
        border-radius: 0.25rem;
        /* Larger tap targets */
        min-height: 44px;
    }
    .home-btn {
        flex: 0 0 auto;
        padding: 0.75rem;
    }
    .bb-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    /* --- Directory Overlay --- */
    .directory-overlay {
        padding: 5rem 1rem 2rem;
        align-items: flex-start;
        overflow-y: auto;
    }
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0.75rem;
        max-height: none;
        height: auto;
        width: 100%;
    }
    .directory-tile {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    .tile-title {
        font-size: 1.2rem;
    }
    .tile-label {
        font-size: 0.55rem;
    }
    .social-tile .tile-title {
        font-size: 1.2rem;
    }
}

/* --- Particle Canvas --- */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
