/* CortexFlex Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #090A0C;
    position: relative;
}

/* Footer Icon Alignment Fix */
footer .flex.items-center {
    display: flex !important;
    align-items: center !important;
}

footer a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Global Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.02em;
}

/* Optional noise overlay applied to ::before pseudo-element on the body to avoid extra divs */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Radial Glow Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(212, 255, 51, 0.08), transparent 50%),
        radial-gradient(ellipse at 90% 40%, rgba(212, 255, 51, 0.05), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 255, 51, 0.07), transparent 60%);
    filter: blur(60px);
}

/* All sections need relative positioning to be above glow */
section,
nav,
footer {
    position: relative;
    z-index: 1;
}

/* Hero Section Responsive Height */
.hero-section {
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh !important;
        max-height: 100vh !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* Remove grid behavior on mobile */
    .hero-section .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Make left text section take full viewport on mobile */
    .hero-section .grid>div:first-child {
        width: 100vw !important;
        min-height: 100vh !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 80px 1.25rem 40px 1.25rem !important;
        box-sizing: border-box !important;
    }

    /* Hide app preview section on mobile */
    .hero-section .grid>div:nth-child(2) {
        display: none !important;
    }
}

/* Glassmorphism Card Style */
.feature-card {
    background: rgba(18, 20, 24, 0.4);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .feature-card {
        padding: 32px;
    }
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(212, 255, 51, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 255, 51, 0.25);
    background: rgba(18, 20, 24, 0.6);
}

/* Glass Card for Phone UI */
.glass-card {
    background: rgba(18, 20, 24, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* App Preview Box Styles */
.app-preview-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 420 / 500;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .app-preview-container {
        display: none !important;
    }
}

.app-preview-box {
    width: 100%;
    height: 100%;
    background: #0E1621;
    border-radius: 28px;
    box-shadow:
        0 0 80px rgba(180, 240, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(180, 240, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Floating Stat Cards */
.floating-stat-card {
    position: absolute;
    background: rgba(18, 20, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow:
        0 16px 32px -4px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-stat-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 24px 48px -8px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 255, 51, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 255, 51, 0.3);
}

/* Hide performance score card on mobile */
@media (max-width: 768px) {
    .top-card {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Top Overlapping Card */
.top-card {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 54%);
    max-width: 280px;
}

/* Additional spacing adjustments for different screen sizes */
@media (max-width: 1024px) {
    .top-card {
        top: 22%;
    }
}

@media (min-width: 1025px) {
    .top-card {
        top: 18%;
    }
}

/* Left Floating Card */
.left-card {
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: min(130px, 25%);
    max-width: 130px;
}

/* Right Floating Card */
.right-card {
    top: 35%;
    right: -5%;
    width: min(115px, 22%);
    max-width: 115px;
}

/* Phone Mockup Styles - DEPRECATED */
.phone-mockup {
    display: none;
}

.phone-frame {
    display: none;
}

.phone-content {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .app-preview-container {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .app-preview-container {
        max-width: min(380px, 90vw);
    }

    .top-card {
        width: min(200px, 52%);
        top: 22%;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .left-card {
        left: -8%;
        width: min(110px, 28%);
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .right-card {
        right: -8%;
        width: min(100px, 26%);
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .floating-stat-card {
        border-radius: 12px;
    }

    /* Optimize hero section spacing for mobile */
    .hero-section {
        padding-top: 7rem !important;
    }

    .hero-section .grid {
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .app-preview-container {
        max-width: min(340px, 92vw);
    }

    .top-card {
        width: min(180px, 50%);
        top: 24%;
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .left-card {
        left: -10%;
        width: min(95px, 28%);
        padding: 8px 10px;
        font-size: 0.7rem;
    }

    .right-card {
        right: -10%;
        width: min(85px, 25%);
        padding: 8px 10px;
        font-size: 0.7rem;
    }

    /* Ensure hero section content is compact on small mobile */
    .hero-section {
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-section .space-y-6 {
        gap: 1rem !important;
    }

    .hero-section .app-preview-container {
        margin-top: 1.5rem !important;
    }
}

/* Additional hover effects */
.group:hover .text-neon {
    filter: drop-shadow(0 0 8px rgba(180, 240, 0, 0.6));
}

/* Brain Logo Glow */
.brain-logo {
    filter: drop-shadow(0 0 12px rgba(180, 240, 0, 0.6)) drop-shadow(0 0 20px rgba(180, 240, 0, 0.4));
    animation: pulse-glow 2s ease-in-out infinite;
}

.brain-logo-large {
    filter: drop-shadow(0 0 16px rgba(180, 240, 0, 0.7)) drop-shadow(0 0 28px rgba(180, 240, 0, 0.5));
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Brain Icon Glow for Nav */
.brain-icon-glow i {
    filter: drop-shadow(0 0 12px rgba(180, 240, 0, 0.6)) drop-shadow(0 0 20px rgba(180, 240, 0, 0.4));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(180, 240, 0, 0.6)) drop-shadow(0 0 20px rgba(180, 240, 0, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 16px rgba(180, 240, 0, 0.8)) drop-shadow(0 0 28px rgba(180, 240, 0, 0.5));
    }
}

/* Smooth transitions for all interactive elements */
a,
button {
    transition: all 0.3s ease;
}

/* Selection color */
::selection {
    background: rgba(180, 240, 0, 0.3);
    color: #F5F5F5;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0B0F0C;
}

::-webkit-scrollbar-thumb {
    background: rgba(180, 240, 0, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(180, 240, 0, 0.5);
}

/* Scrolling Logos Animation */
.logo-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.logo-scroll-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.logo-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.logo-item img {
    height: 90px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s ease;
    /* Default blend for all logos */
    mix-blend-mode: multiply;
}

/* CSS hack for logos with white/gray backgrounds */
.logo-item img[src*="harvard"],
.logo-item img[src*="cornell"],
.logo-item img[src*="mcgill"] {
    filter: brightness(0.85) contrast(1.2) grayscale(0%) drop-shadow(0 0 2px #090A0C);
    mix-blend-mode: darken;
    background: transparent !important;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Homepage logo bar — medium sized */
.logo-item-large img {
    height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo-item-large img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Dark-tinted logo strip */
.logo-strip-white {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 0;
}

@media (max-width: 768px) {
    .logo-item-large img {
        height: 40px;
        max-width: 110px;
    }
}

/* Neon callout text */
.neon-callout {
    color: #D4FF33;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(212, 255, 51, 0.6), 0 0 40px rgba(212, 255, 51, 0.3);
}

/* Additional Responsive Utilities */
@media (max-width: 1280px) {
    .max-w-\[1200px\] {
        max-width: 95vw !important;
    }
}

/* Prevent horizontal overflow */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Make sure all containers are fluid */
* {
    max-width: 100%;
}

/* Make sure images scale properly */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid typography using clamp for all screen sizes */
html {
    font-size: 16px;
}

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* Responsive text scaling with better fluid sizing */
@media (max-width: 640px) {
    h1 {
        font-size: clamp(1.75rem, 8vw + 0.5rem, 4.5rem) !important;
        line-height: 1.15 !important;
    }

    h2 {
        font-size: clamp(1.5rem, 5vw + 0.5rem, 2.75rem) !important;
        line-height: 1.2 !important;
    }

    h3 {
        font-size: clamp(1.25rem, 4vw + 0.25rem, 2rem) !important;
        line-height: 1.3 !important;
    }

    .text-5xl {
        font-size: clamp(1.875rem, 6vw + 0.5rem, 3rem) !important;
    }

    .text-4xl {
        font-size: clamp(1.5rem, 5vw + 0.5rem, 2.25rem) !important;
    }

    .text-3xl {
        font-size: clamp(1.25rem, 4vw + 0.5rem, 1.875rem) !important;
    }

    .text-2xl {
        font-size: clamp(1.125rem, 3.5vw + 0.5rem, 1.5rem) !important;
    }

    .text-xl {
        font-size: clamp(1rem, 3vw + 0.25rem, 1.25rem) !important;
    }
}

/* Ensure proper aspect ratio handling for testimonial cards */
@media (max-width: 768px) {
    .h-\[600px\] {
        height: clamp(400px, 70vh, 600px) !important;
    }

    .h-\[500px\] {
        height: clamp(350px, 60vh, 500px) !important;
    }
}

@media (max-width: 480px) {
    .h-\[600px\] {
        height: clamp(350px, 65vh, 500px) !important;
    }

    .h-\[500px\] {
        height: clamp(300px, 55vh, 450px) !important;
    }
}

/* Fix grid gaps on small screens */
@media (max-width: 640px) {
    .gap-4 {
        gap: 0.875rem !important;
    }

    .gap-6 {
        gap: 1rem !important;
    }

    .gap-8 {
        gap: 1.25rem !important;
    }
}

/* Improve touch targets for mobile - minimum 44x44px */
button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

a {
    display: inline-flex;
    align-items: center;
    text-align: center;
}

/* Exception for inline text links */
a:not([class*="button"]):not([class*="btn"]):not(nav a):not(.logo) {
    display: inline;
    min-height: auto;
    min-width: auto;
}

/* Navigation touch targets */
nav a {
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {

    button,
    .button {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 44px;
    }

    nav a {
        padding: 0.75rem 1rem;
        font-size: 1rem !important;
        min-height: 44px;
    }

    /* Larger touch targets for mobile menu items */
    #mobile-menu a {
        padding: 1rem !important;
        font-size: 1.125rem !important;
    }

    /* Larger mobile menu button */
    #mobile-menu-btn {
        width: 52px !important;
        height: 48px !important;
    }

    /* Make hamburger icon lines wider on mobile */
    #mobile-menu-btn span {
        width: 28px !important;
    }
}

/* Ensure proper padding on all sections for mobile */
@media (max-width: 640px) {
    section {
        padding-left: max(1.25rem, env(safe-area-inset-left)) !important;
        padding-right: max(1.25rem, env(safe-area-inset-right)) !important;
    }

    .px-5 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* Better mobile spacing */
@media (max-width: 768px) {
    .py-12 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-32 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .mb-20 {
        margin-bottom: 2.5rem !important;
    }

    .mb-10 {
        margin-bottom: 1.5rem !important;
    }
}

/* Improve mobile menu visibility */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu:not(.hidden) {
    display: block !important;
    max-height: 500px !important;
    overflow: visible !important;
}

#mobile-menu:not(.hidden) a,
#mobile-menu:not(.hidden) button {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#mobile-menu.hidden {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {

    #mobile-menu:not(.hidden) a,
    #mobile-menu:not(.hidden) button {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Better responsive grid layouts */
@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}

/* Ensure flex items don't shrink too much */
.flex>* {
    min-width: 0;
}

/* Better overflow handling for cards */
.feature-card,
.glass-card {
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive font sizes for stats */
@media (max-width: 640px) {
    .text-\[72px\] {
        font-size: clamp(2.5rem, 10vw, 4.5rem) !important;
    }

    .text-\[56px\] {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
    }

    .text-\[44px\] {
        font-size: clamp(1.75rem, 7vw, 2.75rem) !important;
    }
}

/* Safe area insets for notched devices */
@supports (padding: env(safe-area-inset-left)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Landscape orientation optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .min-h-screen {
        min-height: 100vh;
    }

    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Additional mobile-first optimizations */

/* Ensure all containers stay within viewport */
.max-w-\[1200px\],
.container,
section>div {
    max-width: 100%;
}

/* Better image responsiveness */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow on small screens */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive tables */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Better form inputs on mobile */
@media (max-width: 768px) {

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
        min-height: 44px;
    }
}

/* Prevent zoom on double-tap */
* {
    touch-action: manipulation;
}

/* Smooth scrolling for anchors on mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
        /* Account for fixed nav */
    }
}

/* Better focus states for keyboard navigation */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #B4F000;
    outline-offset: 2px;
}

/* Hide horizontal scrollbar but allow scroll */
html {
    overflow-x: hidden;
}

/* Mobile-specific card padding adjustments */
@media (max-width: 480px) {
    .feature-card {
        padding: 1.25rem !important;
    }

    .floating-stat-card {
        padding: 0.625rem 0.75rem !important;
    }
}

/* Optimize performance for animations on mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Fix for iOS Safari bottom bar issue */
@supports (-webkit-touch-callout: none) {
    .min-h-screen {
        min-height: -webkit-fill-available;
    }
}

/* Better line-height for readability on mobile */
@media (max-width: 640px) {
    p {
        line-height: 1.6 !important;
    }

    /* Extra small screens - very compact layout */
    .hero-section {
        min-height: auto !important;
    }

    /* Reduce vertical spacing in hero section */
    .hero-section .space-y-6,
    .hero-section .space-y-8 {
        gap: 0.75rem !important;
    }
}

/* Additional viewport-specific adjustments */
@media (max-width: 390px) {
    .top-card {
        width: min(170px, 48%);
        top: 26%;
        padding: 5px 8px;
        font-size: 0.65rem;
    }

    .app-preview-box {
        border-radius: 20px;
    }
}

/* Ensure consistent spacing across all breakpoints */
@media (min-width: 641px) and (max-width: 768px) {
    .top-card {
        top: 21%;
        width: min(210px, 53%);
    }
}

/* Prevent word hyphenation across entire site */
.hyphens-none {
    hyphens: none;
    word-break: break-word;
}

/* Coach Images - Sharp Display */
.sharp-image {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    filter: contrast(1.1);
}

/* Cortex Marker Styling */
.cortex-marker {
    filter: drop-shadow(0 0 8px rgba(212, 255, 51, 0.6));
    animation: pulseMarker 2s ease-in-out infinite;
}

@keyframes pulseMarker {

    0%,
    100% {
        r: 8px;
        filter: drop-shadow(0 0 8px rgba(212, 255, 51, 0.6));
    }

    50% {
        r: 10px;
        filter: drop-shadow(0 0 15px rgba(212, 255, 51, 0.9));
    }
}

/* Map Overlay Styling */
.cortex-tooltip {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Cortex Popup Styling */
.cortex-popup .leaflet-popup-content-wrapper {
    background-color: #090A0C !important;
    border: 1px solid #D4FF33 !important;
    border-radius: 6px !important;
    box-shadow: 0 0 15px rgba(212, 255, 51, 0.3) !important;
    padding: 0 !important;
}

.cortex-popup .leaflet-popup-content {
    margin: 0 !important;
    padding: 0 !important;
}

.leaflet-popup-tip {
    background-color: #090A0C !important;
    border-top: 1px solid #D4FF33 !important;
}

/* Map Controls */
.leaflet-control-zoom {
    border: 1px solid rgba(212, 255, 51, 0.2) !important;
    border-radius: 6px !important;
    background-color: #121418 !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    background-color: #121418 !important;
    border: 1px solid rgba(212, 255, 51, 0.2) !important;
    color: #D4FF33 !important;
    font-weight: bold !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 26px !important;
    font-size: 18px !important;
    border-radius: 4px !important;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
    background-color: #1a1f26 !important;
    box-shadow: 0 0 10px rgba(212, 255, 51, 0.2) !important;
}

/* Map Attribution */
.leaflet-control-attribution {
    background-color: rgba(9, 10, 12, 0.9) !important;
    color: #94A3B8 !important;
    font-size: 11px !important;
    border: 1px solid rgba(212, 255, 51, 0.1) !important;
    padding: 2px 5px !important;
}

.leaflet-control-attribution a {
    color: #D4FF33 !important;
    text-decoration: none !important;
}

.leaflet-control-attribution a:hover {
    text-decoration: underline !important;
}