﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    overflow: hidden;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.tagline {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.pulse-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: #38bdf8;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.hidden-link {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0;
    z-index: 100;
}

.footer {
    text-align: center;
    align-content: center;
    width: 100%;
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}
