* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 105, 180, 0.3) 0%, transparent 50%);
    animation: glow 4s ease-in-out infinite alternate;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Düşünce Bulutu */
.thought-bubble {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #ffe6f0 100%);
    padding: 20px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4), 0 0 20px rgba(255, 182, 193, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    border: 3px solid rgba(255, 105, 180, 0.3);
    max-width: 90%;
}

.bubble-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: pulse 2s ease-in-out infinite, rainbow-text 3s ease-in-out infinite;
}

.bubble-tail {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bubble-tail-small {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-20px);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stitch */
.stitch {
    position: relative;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    transform: scale(1);
}

/* Kulaklar */
.ear {
    position: absolute;
    width: 100px;
    height: 160px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 50% 50% 30% 30%;
    top: -120px;
    z-index: 1;
}

.ear-left {
    left: -20px;
    transform: rotate(-25deg);
}

.ear-right {
    right: -20px;
    transform: rotate(25deg);
}

.ear-inner {
    position: absolute;
    width: 50px;
    height: 80px;
    background: #B19CD9;
    border-radius: 50%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Kafa */
.head {
    position: relative;
    width: 240px;
    height: 200px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 50% 50% 48% 48%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Saç tüyleri */
.hair {
    position: absolute;
    width: 30px;
    height: 25px;
    background: #4169E1;
    border-left: 3px solid #1e3a8a;
    border-right: 3px solid #1e3a8a;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hair::before,
.hair::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 15px;
    background: #4169E1;
    border: 2px solid #1e3a8a;
    border-bottom: none;
}

.hair::before {
    left: -15px;
    top: 0;
    transform: rotate(-20deg);
}

.hair::after {
    right: -15px;
    top: 0;
    transform: rotate(20deg);
}

/* Yüz çizgileri */
.face-line {
    position: absolute;
    width: 40px;
    height: 2px;
    background: #1e3a8a;
    border-radius: 2px;
}

.face-line-1 {
    top: 70px;
    left: 20px;
    width: 35px;
}

.face-line-2 {
    top: 80px;
    left: 15px;
    width: 30px;
}

.face-line-3 {
    top: 90px;
    left: 20px;
    width: 25px;
}

/* Gözler */
.eye {
    position: absolute;
    width: 70px;
    height: 80px;
    background: #87CEEB;
    border: 4px solid #1e3a8a;
    border-radius: 50%;
    top: 50px;
}

.eye-left {
    left: 30px;
}

.eye-right {
    right: 30px;
}

.eye-white {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #87CEEB;
    border-radius: 50%;
}

.iris {
    position: absolute;
    width: 45px;
    height: 50px;
    background: #1e3a8a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pupil {
    position: absolute;
    width: 30px;
    height: 35px;
    background: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blink 4s infinite;
}

.eye-shine {
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    top: 15px;
    left: 15px;
    z-index: 5;
}

/* Burun */
.nose {
    position: absolute;
    width: 35px;
    height: 28px;
    background: #1e3a8a;
    border-radius: 50% 50% 50% 50%;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Ağız */
.mouth {
    position: absolute;
    width: 140px;
    height: 70px;
    background: #8B4789;
    border: 4px solid #1e3a8a;
    border-radius: 0 0 70px 70px;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.tongue {
    position: absolute;
    width: 80px;
    height: 40px;
    background: #FF69B4;
    border-radius: 50%;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.tooth {
    position: absolute;
    width: 12px;
    height: 18px;
    background: white;
    border: 2px solid #1e3a8a;
    border-radius: 0 0 50% 50%;
    top: -2px;
}

.tooth-1 {
    left: 20px;
}

.tooth-2 {
    left: 45px;
}

.tooth-3 {
    right: 45px;
}

.tooth-4 {
    right: 20px;
}

/* Vücut */
.body {
    position: relative;
    width: 180px;
    height: 160px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 45% 45% 55% 55%;
    margin: -20px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chest {
    position: absolute;
    width: 120px;
    height: 110px;
    background: #87CEEB;
    border-radius: 50%;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.belly-line {
    position: absolute;
    width: 2px;
    height: 30px;
    background: #1e3a8a;
    left: 50%;
    transform: translateX(-50%);
}

.belly-line-1 {
    top: 80px;
}

.belly-line-2 {
    top: 115px;
    height: 20px;
}

/* Kollar - Vücuda bağlı */
.arm {
    position: absolute;
    width: 55px;
    height: 130px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 30px;
    top: 165px;
    z-index: 1;
}

.arm-left {
    left: 5px;
    transform: rotate(-35deg);
    transform-origin: top center;
    animation: wave-left 2s ease-in-out infinite;
}

.arm-right {
    right: 5px;
    transform: rotate(35deg);
    transform-origin: top center;
    animation: wave-right 2s ease-in-out infinite;
}

.hand {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 50%;
    bottom: -20px;
    left: 2px;
}

.claw {
    position: absolute;
    width: 15px;
    height: 25px;
    background: #1e3a8a;
    border-radius: 50% 50% 0 0;
    bottom: -15px;
}

.claw-1 {
    left: 5px;
    transform: rotate(-15deg);
}

.claw-2 {
    left: 50%;
    transform: translateX(-50%);
}

.claw-3 {
    right: 5px;
    transform: rotate(15deg);
}

/* Bacaklar - Daha düzgün */
.leg {
    position: absolute;
    width: 55px;
    height: 90px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 28px;
    top: 295px;
}

.leg-left {
    left: 40px;
    transform: rotate(-5deg);
}

.leg-right {
    right: 40px;
    transform: rotate(5deg);
}

.foot {
    position: absolute;
    width: 65px;
    height: 40px;
    background: #4169E1;
    border: 3px solid #1e3a8a;
    border-radius: 45% 45% 35% 35%;
    bottom: -22px;
    left: -5px;
}

.toe {
    position: absolute;
    width: 14px;
    height: 16px;
    background: #1e3a8a;
    border-radius: 50% 50% 0 0;
    bottom: -8px;
}

.toe-1 {
    left: 10px;
}

.toe-2 {
    left: 50%;
    transform: translateX(-50%);
}

.toe-3 {
    right: 10px;
}

/* Çiçekler - Daha güzel */
.flower {
    position: absolute;
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 5px rgba(255, 105, 180, 0.5));
}

.flower-1 {
    top: -30px;
    left: -10px;
    animation: rotate-flower 4s linear infinite, flower-glow 2s ease-in-out infinite;
}

.flower-2 {
    top: -35px;
    left: -5px;
    animation: rotate-flower 3s linear infinite reverse, flower-glow 2s ease-in-out infinite 0.5s;
}

.flower-3 {
    top: -25px;
    left: 15px;
    animation: rotate-flower 5s linear infinite, flower-glow 2s ease-in-out infinite 1s;
}

.petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.petal:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-15px);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.petal:nth-child(2) {
    transform: translate(-50%, -50%) rotate(72deg) translateY(-15px);
    background: linear-gradient(135deg, #ff85c1 0%, #ff69b4 100%);
}

.petal:nth-child(3) {
    transform: translate(-50%, -50%) rotate(144deg) translateY(-15px);
    background: linear-gradient(135deg, #ffa0d0 0%, #ff85c1 100%);
}

.petal:nth-child(4) {
    transform: translate(-50%, -50%) rotate(216deg) translateY(-15px);
    background: linear-gradient(135deg, #ff85c1 0%, #ff69b4 100%);
}

.petal:nth-child(5) {
    transform: translate(-50%, -50%) rotate(288deg) translateY(-15px);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.flower-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.02);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes wave-left {
    0%, 100% {
        transform: rotate(-35deg);
    }
    50% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

@keyframes wave-right {
    0%, 100% {
        transform: rotate(35deg);
    }
    50% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@keyframes rotate-flower {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 96%, 100% {
        opacity: 1;
    }
    98% {
        opacity: 0;
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Romantik Arka Plan Öğeleri */
.hearts-background {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hearts-background::before,
.hearts-background::after {
    content: '💕';
    position: absolute;
    font-size: 40px;
    animation: float-hearts 8s ease-in-out infinite;
    opacity: 0.6;
}

.hearts-background::before {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hearts-background::after {
    right: 15%;
    top: 60%;
    animation-delay: 2s;
}

.stars-background {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stars-background::before,
.stars-background::after {
    content: '✨';
    position: absolute;
    font-size: 30px;
    animation: twinkle 3s ease-in-out infinite;
}

.stars-background::before {
    left: 20%;
    top: 70%;
    animation-delay: 1s;
}

.stars-background::after {
    right: 25%;
    top: 30%;
    animation-delay: 2.5s;
}

@keyframes float-hearts {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes flower-glow {
    0%, 100% {
        filter: drop-shadow(0 2px 5px rgba(255, 105, 180, 0.5));
    }
    50% {
        filter: drop-shadow(0 2px 15px rgba(255, 105, 180, 1));
    }
}

@keyframes rainbow-text {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Kelebekler */
.butterfly {
    position: fixed;
    font-size: 35px;
    pointer-events: none;
    z-index: 5;
    animation: fly 15s ease-in-out infinite;
    filter: drop-shadow(0 2px 5px rgba(255, 105, 180, 0.5));
}

.butterfly-1 {
    left: -50px;
    top: 30%;
    animation-delay: 0s;
}

.butterfly-2 {
    right: -50px;
    top: 60%;
    animation-delay: 7s;
}

.butterfly-3 {
    left: -50px;
    top: 50%;
    animation: fly-reverse 18s ease-in-out infinite;
    animation-delay: 3s;
}

.butterfly-4 {
    right: -50px;
    top: 40%;
    animation: fly-reverse 20s ease-in-out infinite;
    animation-delay: 10s;
}

@keyframes fly {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(30vw) translateY(-20px) rotate(10deg);
    }
    50% {
        transform: translateX(50vw) translateY(20px) rotate(-10deg);
    }
    75% {
        transform: translateX(80vw) translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateX(110vw) translateY(0) rotate(0deg);
    }
}

@keyframes fly-reverse {
    0% {
        transform: translateX(110vw) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(80vw) translateY(20px) rotate(-10deg);
    }
    50% {
        transform: translateX(50vw) translateY(-20px) rotate(10deg);
    }
    75% {
        transform: translateX(30vw) translateY(10px) rotate(-5deg);
    }
    100% {
        transform: translateX(-50px) translateY(0) rotate(0deg);
    }
}

/* Ay */
.moon {
    position: fixed;
    top: 8%;
    right: 10%;
    font-size: 60px;
    z-index: 1;
    animation: moon-glow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 200, 0.8));
}

@keyframes moon-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 200, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(255, 255, 200, 1));
    }
}

/* Yıldızlar */
.star {
    position: fixed;
    font-size: 25px;
    z-index: 1;
    animation: star-twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.star-3 {
    top: 70%;
    left: 10%;
    animation-delay: 1s;
}

.star-4 {
    top: 75%;
    right: 15%;
    animation-delay: 1.5s;
}

.star-5 {
    top: 40%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

/* Gül Yaprakları */
.rose-petal {
    position: fixed;
    font-size: 30px;
    pointer-events: none;
    z-index: 3;
    animation: petal-fall 12s ease-in-out infinite;
}

.petal-1 {
    left: 20%;
    top: -50px;
    animation-delay: 0s;
}

.petal-2 {
    left: 50%;
    top: -50px;
    animation-delay: 3s;
}

.petal-3 {
    left: 70%;
    top: -50px;
    animation-delay: 6s;
}

.petal-4 {
    left: 35%;
    top: -50px;
    animation-delay: 9s;
}

@keyframes petal-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0.3;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .thought-bubble {
        top: 5%;
        padding: 15px 25px;
        max-width: 85%;
    }
    
    .bubble-text {
        font-size: 18px;
    }
    
    .bubble-tail {
        width: 30px;
        height: 30px;
        bottom: -25px;
    }
    
    .bubble-tail-small {
        width: 15px;
        height: 15px;
        bottom: -40px;
    }
    
    .stitch {
        transform: scale(0.7);
    }
    
    .container {
        padding: 20px 0;
    }
    
    .moon {
        font-size: 45px;
        top: 5%;
        right: 5%;
    }
    
    .star {
        font-size: 20px;
    }
    
    .rose-petal {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .thought-bubble {
        top: 3%;
        padding: 12px 20px;
        max-width: 80%;
    }
    
    .bubble-text {
        font-size: 16px;
    }
    
    .bubble-tail {
        width: 25px;
        height: 25px;
        bottom: -20px;
    }
    
    .bubble-tail-small {
        width: 12px;
        height: 12px;
        bottom: -35px;
    }
    
    .stitch {
        transform: scale(0.5);
    }
    
    .butterfly {
        font-size: 25px;
    }
    
    .hearts-background::before,
    .hearts-background::after {
        font-size: 30px;
    }
    
    .stars-background::before,
    .stars-background::after {
        font-size: 20px;
    }
    
    .moon {
        font-size: 35px;
        top: 3%;
        right: 3%;
    }
    
    .star {
        font-size: 16px;
    }
    
    .rose-petal {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .thought-bubble {
        top: 2%;
        padding: 10px 15px;
    }
    
    .bubble-text {
        font-size: 14px;
    }
    
    .stitch {
        transform: scale(0.45);
    }
    
    .moon {
        font-size: 30px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .rose-petal {
        font-size: 18px;
    }
    
    .butterfly {
        font-size: 20px;
    }
}


/* Romantik Buton */
.romantic-button {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5), 0 0 20px rgba(255, 105, 180, 0.3);
    z-index: 100;
    animation: button-pulse 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.romantic-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: button-shine 3s ease-in-out infinite;
}

.button-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    display: block;
}

.button-hearts {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    font-size: 20px;
    animation: hearts-float 2s ease-in-out infinite;
}

.button-hearts span {
    animation: heart-bounce 1s ease-in-out infinite;
}

.button-hearts span:nth-child(1) {
    animation-delay: 0s;
}

.button-hearts span:nth-child(2) {
    animation-delay: 0.2s;
}

.button-hearts span:nth-child(3) {
    animation-delay: 0.4s;
}

.romantic-button:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.7), 0 0 30px rgba(255, 105, 180, 0.5);
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5), 0 0 20px rgba(255, 105, 180, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 20, 147, 0.8), 0 0 30px rgba(255, 105, 180, 0.6);
    }
}

@keyframes button-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes hearts-float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes heart-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .romantic-button {
        bottom: 40px;
        padding: 15px 35px;
    }
    
    .button-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .romantic-button {
        bottom: 30px;
        padding: 12px 25px;
    }
    
    .button-text {
        font-size: 16px;
    }
    
    .button-hearts {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .romantic-button {
        bottom: 25px;
        padding: 10px 20px;
    }
    
    .button-text {
        font-size: 14px;
    }
    
    .button-hearts {
        font-size: 14px;
        top: -25px;
    }
}
