/* Cute Bubblegum Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
    background: linear-gradient(135deg, #ffd6e8 0%, #ffc0e5 50%, #ffb3e6 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-y: auto;
}

/* Bubblegum bubbles background animation */
body::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: 10%;
    animation: float 8s infinite ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 182, 230, 0.15);
    border-radius: 50%;
    bottom: -75px;
    right: 15%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

h1 {
    color: #ff69b4;
    font-size: 3em;
    text-align: center;
    text-shadow: 
        3px 3px 0px #ff1493,
        6px 6px 0px rgba(255, 105, 180, 0.3);
    margin-bottom: 30px;
    padding: 20px 40px;
    background: white;
    border-radius: 50px;
    border: 5px solid #ff69b4;
    box-shadow: 
        0 8px 20px rgba(255, 105, 180, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    position: relative;
    z-index: 1;
}

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

p {
    color: #ff1493;
    font-size: 1.5em;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 40px;
    border-radius: 30px;
    border: 4px dashed #ff69b4;
    box-shadow: 
        0 6px 15px rgba(255, 105, 180, 0.3),
        inset 0 2px 5px rgba(255, 192, 229, 0.5);
    max-width: 600px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Add cute sparkle effects */
h1::before,
p::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.5em;
    animation: sparkle 1.5s infinite;
}

h1::after,
p::after {
    content: '💕';
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 1.5em;
    animation: pulse 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}
