@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600;800&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tronCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.glass-panel {
    position: relative;
    z-index: 10;
    width: 85%;
    max-width: 450px;
    padding: clamp(25px, 6vw, 50px);
    background: rgba(0, 0, 0, 0.6); /* Súper transparente */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
}

.main-logo {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.15));
}

.title {
    color: #fff;
    font-size: clamp(1rem, 4.5vw, 1.4rem);
    letter-spacing: 5px;
    font-weight: 300;
    margin: 0;
}

.neon-red {
    color: #ff003c;
    font-weight: 800;
    text-shadow: 0 0 15px #ff003c;
}

.status {
    color: #00ffcc;
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
    margin: 1.2rem 0 2.5rem 0;
    letter-spacing: 3px;
    opacity: 0.8;
}

.footer-data {
    color: #c7c7c7;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    border-top: 1px solid rgba(199, 199, 199, 0.05);
    padding-top: 1.5rem;
}

.year {
    margin-top: 5px;
    color: #a0a0a0;
    font-weight: 900;
}