/*
Theme Name: Dulces Helix Wave
Theme URI: https://tusitio.com
Author: Jeison Cadena
Description: Tema con frutas flotantes en movimiento de onda.
Version: 5.0
*/

body {
    margin: 0;
    /* Fondo limpio y profundo para resaltar las frutas */
    background: radial-gradient(circle at center, #581c87 0%, #0f172a 100%); 
    font-family: 'Fredoka', sans-serif;
    color: white;
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Titan One', cursive;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.15);
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 35px;
}

.hover-float:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.text-gradient {
    background: linear-gradient(to right, #fbbf24, #f472b6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 0px rgba(0,0,0,0.2));
}

.btn-candy {
    transition: all 0.1s;
    border-bottom-width: 6px;
    border-color: rgba(0,0,0,0.25);
}
.btn-candy:active {
    transform: translateY(4px);
    border-bottom-width: 2px;
}

::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: #2e1065; }
::-webkit-scrollbar-thumb { 
    background: #f472b6; 
    border-radius: 7px; 
    border: 4px solid #2e1065; 
}