/* ============================================
   Template 11 - Floating Bubbles
   ============================================ */

.template-bubbles {
    background: linear-gradient(180deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
}

/* Gradient Overlay */
.bubble-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

/* Logo */
.bubble-logo {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.bubble-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
    color: white;
}

/* Bubble Heading */
.bubble-heading {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.text-bubble-light {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.text-bubble-gradient {
    display: block;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bubble Countdown */
.bubble-countdown .countdown-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    min-width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bubble-countdown .countdown-value {
    font-size: 1.75rem;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

.bubble-countdown .countdown-label {
    font-size: 0.7rem;
    margin-top: 0;
}

/* Bubble Form */
.bubble-form {
    max-width: 400px;
    margin: 2rem auto 0;
}

.bubble-input {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
}

.bubble-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.btn-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-bubble:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Bubble Stats */
.bubble-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bubble-stat {
    text-align: center;
}

.stat-bubble {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    animation: bubble-float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(1) { animation-delay: 0s; }
.stat-bubble:nth-child(2) { animation-delay: 0.5s; }
.stat-bubble:nth-child(3) { animation-delay: 1s; }

@keyframes bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-bubble .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.bubble-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Bubble Social */
.bubble-social-link {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
}

.bubble-social-link:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
}
