        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: 
                linear-gradient(rgba(126, 87, 194, 0.9), rgba(126, 87, 194, 0.9)),
                        url('https://images.unsplash.com/photo-1517849845537-4d257902454a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');

            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .construction-container {
            max-width: 800px;
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        
        p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .countdown-item {
            background: rgba(0, 184, 148, 0.8);
            padding: 1rem;
            border-radius: 10px;
            min-width: 80px;
        }
        
        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .pet-gallery {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .pet-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(0, 184, 148, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            transition: all 0.3s;
            border: 2px solid rgba(0, 184, 148, 0.5);
        }

           .pet-icon svg {
            width: 100%;
            height: 100%;
            color: white;
        }
        
        .pet-icon:hover {
            transform: scale(1.1) rotate(10deg);
            background-color: rgba(0, 184, 148, 0.6);
            box-shadow: 0 5px 15px rgba(0, 184, 148, 0.5);
        }
        
        .pet-image:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 5px 15px rgba(0, 184, 148, 0.5);
        }

          
        /* Estilos del Tooltip */
        .pet-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-bottom: 10px;
        }
        
        /* Flechita del tooltip */
        .pet-icon::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-bottom: 5px;
        }
        
        /* Mostrar tooltip al hacer hover */
        .pet-icon:hover::after,
        .pet-icon:hover::before {
            opacity: 1;
            visibility: visible;
        }
        
        /* Efecto adicional al hacer hover */
        .pet-icon:hover {
            transform: scale(1.1) rotate(10deg);
            background-color: rgba(0, 184, 148, 0.6);
            box-shadow: 0 5px 15px rgba(0, 184, 148, 0.5);
        }
        
        .notify-btn {
            background: #00b894;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .notify-btn:hover {
            background: #00997a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
        }
        
        .social-links {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .social-icon {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            color: #00b894;
            transform: translateY(-5px);
        }
        
        /* Efectos especiales */
        .floating-paw {
            position: absolute;
            font-size: 2rem;
            opacity: 0.6;
            animation: floating 15s linear infinite;
        }
        
        @keyframes floating {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(100vw, -100vh) rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            p { font-size: 1rem; }
            .construction-container { margin: 1rem; }
        }
