/* =============================================================================
   PUBLIC PAGE STYLES - Alicanto Telemetria
   ============================================================================= */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
}

.public-container {
    background-color: #2d2d2d;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
}

/* Brand Styles */
.brand-text {
    letter-spacing: 3px;
    color: #9ca3af;
    font-size: 14px;
}

.brand-name {
    color: #c92a2a;
    font-size: 28px;
    letter-spacing: 8px;
}

/* Subdomain Box */
.subdomain-box {
    background-color: #3d3d3d;
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
}

/* Logo Animation */
@keyframes logo-scale-in {
    0% {
        transform: scale(6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-animated {
    animation: logo-scale-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               logo-float 2.5s ease-in-out 0.8s infinite;
}
