/* GENERAL */
body {
    margin: 0;
    background: radial-gradient(circle at center, #041424, #000b16);
    font-family: "Poppins", sans-serif;
    color: #dff8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* CONTENEDOR */
.wrapper {
    text-align: center;
    animation: fadeIn 1.4s ease-out forwards;
    opacity: 0;
}

/* LOGO CLICABLE */
.logo-link {
    position: relative;
    display: inline-block;
    z-index: 10; /* Siempre encima */
}

.logo {
    width: 220px;
    filter: drop-shadow(0 0 20px #0acbff);
    animation: float 3s ease-in-out infinite;
    pointer-events: auto; /* permite clics */
}

/* HERRAMIENTAS */
.tools {
    position: relative;
    width: 180px;
    height: 100px;
    margin: 0 auto 10px auto;
    pointer-events: none; /* NO bloquea el logo */
}

.tool {
    width: 90px;
    height: 90px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 10px #00d6ff);
}

/* Puedes cambiar estas imágenes por las tuyas */
.hammer {
    background-image: url("https://i.imgur.com/Z7Qf0iD.png");
    left: 15px;
    transform: rotate(-20deg);
    animation: swing 2.3s ease-in-out infinite;
}

.pick {
    background-image: url("https://i.imgur.com/04Ua0y9.png");
    right: 15px;
    transform: rotate(20deg);
    animation: swing2 2.3s ease-in-out infinite;
}

/* TÍTULOS */
.title {
    font-size: 2.3rem;
    margin-top: 10px;
    background: linear-gradient(90deg, #8ffcff, #3dc9ff);
    -webkit-background-clip: text;
    color: transparent;
    animation: glow 2s infinite alternate;
}

.subtitle {
    opacity: 0.8;
    margin-bottom: 25px;
}

/* LOADER BURBUJAS */
.loader {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.bubble {
    width: 18px;
    height: 18px;
    background: #40e0ff;
    border-radius: 50%;
    filter: drop-shadow(0 0 6px #1cdcff);
    animation: bubble 1.5s infinite ease-in-out;
}

.b1 { animation-delay: 0s; }
.b2 { animation-delay: .25s; }
.b3 { animation-delay: .5s; }

/* ANIMACIONES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #0acbff; }
    to   { text-shadow: 0 0 25px #7dfbff; }
}

@keyframes bubble {
    0%   { transform: translateY(0); opacity: 1; }
    50%  { transform: translateY(-12px); opacity: 0.4; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes swing {
    0%   { transform: rotate(-20deg); }
    50%  { transform: rotate(-5deg); }
    100% { transform: rotate(-20deg); }
}

@keyframes swing2 {
    0%   { transform: rotate(20deg); }
    50%  { transform: rotate(5deg); }
    100% { transform: rotate(20deg); }
}
