body, html { 
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #010103; 
    font-family: 'Inter', sans-serif;
    color: white;
    user-select: none; 
    -webkit-user-select: none;
    width: 100vw; 
    height: 100dvh;
}

canvas {
    display: block;
}

.glass {
    background: rgba(8, 10, 24, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

#editor-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

#editor-sidebar.active {
    transform: translateX(0);
}

.label {
    position: fixed !important;
    pointer-events: auto; 
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px; 
    font-weight: 800; 
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap; 
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center; 
    z-index: 10;
    transform: translate(-50%, calc(-100% - 25px));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.label-nebula, .label-star, .label-planet {
    pointer-events: auto;
}

body.info-active canvas {
    cursor: default !important;
}

.label .metadata {
    display: block;
    font-size: 8px; 
    font-weight: 500;
    opacity: 0.6;
    letter-spacing: 1px;
    margin-top: 3px;
}

.label-nebula {
    font-size: 26px; 
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 8px;
    pointer-events: auto !important;
    cursor: pointer;
    z-index: 20;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 0 0 30px rgba(0, 0, 0, 1);
}

.label-star {
    pointer-events: auto !important;
    cursor: pointer;
    color: #60a5fa;
    font-size: 14px; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
    font-weight: 900;
}

.input-field {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 11px;
    color: white;
    transition: all 0.25s ease;
}

.input-field option {
    background-color: #050510;
    color: white;
}

.input-field:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

#info-panel {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 680px;
    max-width: calc(100vw - 64px);
    max-height: 82vh;
    transform: translateY(150%) scale(0.96);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 8000;
    border-radius: 28px;
    background: rgba(7, 9, 22, 0.85);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(59, 130, 246, 0.12);
    padding: 24px;
    box-sizing: border-box;
    display: block;
}

#info-panel.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.info-panel-inner {
    display: flex;
    gap: 24px;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.info-panel-left {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.info-panel-right {
    width: 56%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
    min-width: 0;
    justify-content: space-between;
}

#album-cover-display {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.info-header-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

#album-title {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    word-break: break-word;
    margin: 0;
}

#album-artist {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #60a5fa;
    word-break: break-word;
    margin: 0 0 6px 0;
}

.info-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.info-badge-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.info-badge-label {
    font-size: 7.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

.info-badge-val {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-badge-val.highlight {
    color: #93c5fd;
    font-weight: 900;
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.info-dot-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

.info-section-title {
    font-size: 8.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
}

.info-scroll-area {
    overflow-y: auto;
    max-height: 240px;
    padding-right: 8px;
    margin-bottom: 12px;
    flex: 1;
}

#album-desc {
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
}

#album-interactions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.info-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: scale(1.08);
}

#navigation-bread {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    transition: opacity 0.5s;
}

#current-location-text {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #60a5fa;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

#current-location-text.visible {
    opacity: 1;
    transform: translateY(0);
}

#search-results {
    border-radius: 16px;
}

.search-item {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-item:hover {
    background: rgba(59, 130, 246, 0.18);
}

.search-item-cat {
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #3b82f6;
    margin-bottom: 2px;
}

.search-item-title {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-button, .view-tab {
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    background-color: transparent !important;
    border: 1px solid transparent !important;
}

.nav-button {
    padding: 5px 12px;
}

.view-tab {
    padding: 6px 14px;
}

.nav-button.active, .view-tab.active {
    background: rgba(37, 99, 235, 0.25) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    color: #60a5fa !important;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.2) !important;
}

.nav-button:hover:not(.active), .view-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: white;
}

#nav-btn-reset {
    color: rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 8px 8px 0;
    padding-left: 10px;
}

#nav-btn-reset:hover {
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.15) !important;
}

#personal-auth-gate.active {
    display: flex !important;
}

#timeline-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    outline: none;
    margin: 8px 0;
    transition: all 0.3s ease;
}

#timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    background: #3b82f6;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.7);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#timeline-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

#timeline-slider::-moz-range-thumb {
    width: 13px;
    height: 13px;
    background: #3b82f6;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.7);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.timeline-step-btn {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: white;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeline-step-btn:hover {
    background: #3b82f6;
    border-color: #60a5fa;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.timeline-step-btn:active {
    transform: scale(0.95);
    background: #2563eb;
}

#stats-subcontent {
    animation: statsFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes statsFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

th {
    padding: 0 12px 8px 12px;
}

tbody tr {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    transform: scale(1.01);
}

#stats-overlay {
    animation: overlayFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes overlayFadeIn {
    from { 
        opacity: 0; 
        backdrop-filter: blur(0px);
        transform: scale(1.03);
    }
    to { 
        opacity: 1; 
        backdrop-filter: blur(25px);
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeInModal 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

#big-bang-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle at center, #0a0a1a 0%, #010103 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#big-bang-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-status {
    color: #3b82f6;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-top: 20px;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.loader-bar-container {
    width: 240px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}

#loader-progress {
    width: 0%;
    height: 100%;
    background: #3b82f6;
    box-shadow: 0 0 20px #3b82f6;
    transition: width 0.4s ease;
}

.creator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 16px;
}

.creator-label {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#mobile-dock {
    display: none;
}

@media (min-width: 769px) {
    #main-top-bar {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 2000 !important;
    }

    #search-box-container {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        display: block !important;
        width: 340px !important;
    }

    #navigation-bread {
        position: static !important;
        transform: none !important;
    }

    #ui-main {
        position: fixed;
        top: 72px;
        right: 24px;
        z-index: 1000;
        pointer-events: none;
    }

    #ui-main .glass {
        width: 240px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 3px solid #3b82f6;
        padding: 18px;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    #main-top-bar {
        display: contents !important;
    }

    #top-view-tabs:not(.mobile-active),
    #ui-main:not(.mobile-active),
    #universe-filters:not(.mobile-active),
    #search-box-container:not(.mobile-active) {
        display: none !important;
    }

    #navigation-bread {
        position: fixed !important;
        top: 16px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 2500 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        width: 100% !important;
        pointer-events: none !important;
    }

    #navigation-bread > div.flex {
        pointer-events: auto !important;
        background: rgba(5, 5, 15, 0.75) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        padding: 4px 6px !important;
        border-radius: 50px !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
    }

    #navigation-bread .nav-button {
        padding: 6px 14px !important;
        font-size: 8.5px !important;
        letter-spacing: 1px !important;
        border-radius: 40px !important;
    }

    #current-location-text {
        font-size: 9px !important;
        letter-spacing: 2px !important;
        text-align: center !important;
    }

    #mobile-dock {
        display: flex !important;
        position: fixed !important;
        bottom: 16px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(5, 5, 15, 0.85) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 50px !important;
        padding: 6px 10px !important;
        gap: 8px !important;
        z-index: 9999 !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9) !important;
    }

    .dock-btn {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        padding: 6px 12px !important;
        border-radius: 30px !important;
        color: rgba(255, 255, 255, 0.45) !important;
        transition: all 0.25s ease !important;
        cursor: pointer !important;
    }

    .dock-btn svg {
        width: 18px !important;
        height: 18px !important;
        fill: currentColor !important;
        transition: all 0.25s ease !important;
    }

    .dock-btn span {
        font-size: 7.5px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .dock-btn.active {
        background: rgba(37, 99, 235, 0.95) !important;
        color: #ffffff !important;
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.5) !important;
    }

    .dock-btn.active svg {
        fill: #ffffff !important;
        transform: scale(1.1) !important;
    }

    #universe-filters.mobile-active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        bottom: 84px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 92vw !important;
        max-width: 420px !important;
        z-index: 9000 !important;
        gap: 8px !important;
    }

    #universe-filters .glass {
        padding: 14px !important;
        border-radius: 20px !important;
    }

    #universe-filters select, #universe-filters button {
        width: 100% !important;
    }

    #search-box-container {
        display: none !important;
    }

    #search-box-container.mobile-active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 70px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 92vw !important;
        max-width: 420px !important;
        z-index: 9500 !important;
        pointer-events: auto !important;
    }

    #search-box-container.mobile-active .flex.items-center {
        background: rgba(8, 10, 24, 0.95) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border: 1px solid rgba(59, 130, 246, 0.5) !important;
        border-radius: 18px !important;
        padding: 8px 14px !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9) !important;
    }

    #search-box-container.mobile-active #search-input {
        font-size: 13px !important;
        padding: 4px 8px !important;
    }

    #search-box-container.mobile-active #search-results {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(8, 10, 24, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-radius: 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95) !important;
        z-index: 9600 !important;
    }

    #bottom-panel-header {
        display: none !important;
    }

    #bottom-social-panel {
        bottom: 84px !important;
        width: 92vw !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(150%) !important;
        border-radius: 24px !important;
        height: 60vh !important;
        max-height: 520px !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        z-index: 9000 !important;
    }

    #bottom-social-panel:not(.translate-y-full) {
        transform: translateX(-50%) translateY(0) !important;
    }

    #bottom-social-panel .flex.h-\[350px\] {
        flex-direction: column !important;
        height: 100% !important;
    }

    #bottom-social-panel .w-1\/2 {
        width: 100% !important;
        border-right: none !important;
    }

    #bottom-social-panel .w-1\/2:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex: 0 0 35% !important;
        min-height: 130px;
        padding: 14px !important;
    }

    #bottom-social-panel .w-1\/2:last-child {
        flex: 1 !important;
        padding: 14px !important;
    }

    #info-panel {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        left: 0 !important;
        bottom: 0 !important;
        top: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        padding: 56px 20px 100px 20px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: block !important;
        box-sizing: border-box !important;
        z-index: 10000 !important;
    }

    .info-panel-inner {
        flex-direction: column !important;
        gap: 20px !important;
        height: auto !important;
        min-height: min-content !important;
        padding-bottom: 20px !important;
    }

    .info-panel-left, 
    .info-panel-right {
        width: 100% !important;
        height: auto !important;
    }

    .info-scroll-area {
        max-height: none !important;
        overflow-y: visible !important;
        padding-right: 0 !important;
    }

    .info-panel-right {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-left: 0 !important;
        padding-top: 18px !important;
        justify-content: flex-start !important;
        gap: 16px !important;
    }

    .info-close-btn {
        position: fixed !important;
        top: 14px !important;
        right: 14px !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 18px !important;
        background: rgba(15, 20, 40, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        z-index: 10002 !important;
    }

    .label {
        font-size: 11px !important;
    }

    .label-nebula {
        font-size: 18px !important;
        letter-spacing: 4px !important;
    }

    .label, .label-nebula, .label-star, .label-planet {
        z-index: 10 !important; 
        transform: translate(-50%, calc(-100% - 25px)) !important; 
        pointer-events: auto !important; 
    }

    #direct-chat-window {
        position: fixed !important;
        left: 5vw !important;
        right: 5vw !important;
        width: 90vw !important;
        bottom: 84px !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 5500 !important;
    }
}

#mobile-info-trigger {
    display: none;
}

@media (min-width: 769px) {
    #mobile-info-trigger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #mobile-info-trigger {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 8500;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(8, 10, 24, 0.9);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(59, 130, 246, 0.45);
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 15px rgba(59, 130, 246, 0.25);
        color: white;
        cursor: pointer;
        max-width: 90vw;
        white-space: nowrap;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        animation: fadeInModal 0.3s ease forwards;
    }

    #mobile-info-trigger.hidden {
        display: none !important;
    }

    #mobile-info-trigger:active {
        transform: translateX(-50%) scale(0.95);
        background: rgba(37, 99, 235, 0.95);
    }
}