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

body {
    font-family: 'Segoe UI', 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #ffd4e5 50%, #ffb3d9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    top: 10%;
    left: 15%;
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

body::after {
    content: '🌸';
    position: absolute;
    font-size: 2.5rem;
    top: 70%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
    opacity: 0.6;
}

h1 {
    color: #ff69b4;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 
        2px 2px 0 #ffb3d9,
        4px 4px 10px rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

h2 {
    color: #ff1493;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

h2::before {
    content: '🎀 ';
}

h3 {
    color: #ff69b4;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

h3::before {
    content: '✿ ';
    font-size: 1.2em;
}

h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #ffb3d9);
    margin: 0.5rem auto 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.4);
}

a {
    display: inline-block;
    margin: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffb3d9 0%, #ff8cc6 100%);
    border: 3px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 4px 15px rgba(255, 105, 180, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out both;
    text-shadow: 1px 1px 2px rgba(255, 20, 147, 0.3);
}

a:nth-of-type(1) { animation-delay: 0.5s; }
a:nth-of-type(2) { animation-delay: 0.6s; }
a:nth-of-type(3) { animation-delay: 0.7s; }
a:nth-of-type(4) { animation-delay: 0.8s; }
a:nth-of-type(5) { animation-delay: 0.9s; }
a:nth-of-type(6) { animation-delay: 1s; }

a:hover {
    background: linear-gradient(135deg, #ff8cc6 0%, #ff69b4 100%);
    border-color: #ff69b4;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

a:active {
    transform: translateY(-2px) scale(1.02);
}

a::before {
    content: '🌷';
    margin-right: 0.5rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }
    
    a {
        display: block;
        margin: 0.8rem auto;
        max-width: 300px;
    }
    
    h3 {
        margin: 2rem 0 1rem;
    }
}