/* Fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

/* Fondo general */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0d1117, #1b1f27, #0d1117);
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

/* Contenedor principal */
.container {
    text-align: center;
    padding-top: 60px;
    animation: fadeIn 1.2s ease;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
}

/* Juganito */
#juganito {
    width: 90px;
    height: 90px;
    background: #2ea043;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(46,160,67,0.7);
    transition: transform 0.15s, box-shadow 0.3s;
}

#juganito:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(46,160,67,1);
}

#juganito:active {
    transform: scale(0.9);
}

/* Animación de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
