html, body, #root {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
    font-family: 'Share Tech Mono', monospace;
    color: #eee;
    overflow-x: hidden;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-family: 'Micro 5', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    user-select: none;
}

.intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-text {
    text-shadow: 0 2px 16px #000, 0 0 2px #fff;
}

.fade-in {
    animation: fadeInApp 0.7s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInApp {
    from { opacity: 0; }
    to { opacity: 1; }
}

*, *::before, *::after {
    box-sizing: border-box;
}

.app-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    user-select: none;
}

.content-box {
    height: auto;
    width: 360px;
    background: rgba(15, 15, 15, 0.15);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    text-align: left;
    line-height: 1.3;
    font-size: 14px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.logo-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.site-name {
    font-family: 'Micro 5', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 12px 0;
}

.description {
    font-weight: 300;
    font-size: 12px;
    color: #bbb;
    margin: 0;
    word-break: break-word;
}

.footer {
    text-align: center;
    position: fixed;
    bottom: 14px;
    width: 100%;
    color: #888;
    font-size: 13px;
    user-select: none;
}
