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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #2c1445 0%, #7c2b85 50%, #ff69b4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 0%, rgba(44, 20, 69, 0.8) 100%);
}

.stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: twinkle 4s ease-in-out infinite;
    opacity: 0.3;
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.construction-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.white {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.and {
    color: #ffd700;
    margin: 0 1rem;
    font-style: italic;
}

.love {
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255,105,180,0.5);
}

.candles-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.candle-group {
    perspective: 1000px;
}

.candle {
    position: relative;
    height: 180px;
    width: 60px;
    transform-style: preserve-3d;
    animation: sway 3s ease-in-out infinite alternate;
}

.candle.tall {
    height: 150px;
}

.candle.short {
    height: 90px;
}

.wax {
    background: linear-gradient(45deg, #f0f0f0, #fff);
    height: 100%;
    width: 100%;
    border-radius: 8px;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 
        -2px 0 10px rgba(255,255,255,0.3),
        2px 0 10px rgba(255,255,255,0.3);
}

.drip {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 15px;
    background: linear-gradient(45deg, #f0f0f0, #fff);
    border-radius: 0 0 35px 35px;
    box-shadow: 
        -2px 0 10px rgba(255,255,255,0.3),
        2px 0 10px rgba(255,255,255,0.3);
}

.flame {
    position: absolute;
    top: -35px;
    left: 50%;
    transform-origin: center bottom;
    width: 30px;
    height: 45px;
    animation: flicker 0.5s infinite alternate;
    transform: translateX(-45%);
}

.flame-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(#ffd700 20%, #ff6b6b);
    border-radius: 50% 50% 35% 35%;
    transform: translateX(0);
    filter: blur(0.5px);
    box-shadow: 
        0 0 15px 0 #ffd700,
        0 -15px 35px 5px #ff6b6b,
        0 -25px 45px 10px #ff4500;
    animation: glow 2s ease-in-out infinite alternate;
}

.flame-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(3px);
}

.content {
    margin-top: 3rem;
}

.glowing-text {
    color: #fff;
    font-size: 2.2rem;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.5),
        0 0 20px rgba(255,255,255,0.3),
        0 0 30px rgba(255,255,255,0.1);
    animation: pulse 2s infinite;
}

.fade-in {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

.tagline {
    margin-top: 2rem;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dot {
    color: #ffd700;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.email-icon {
    font-size: 1.4rem;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes sway {
    0% { transform: rotateZ(-1deg); }
    100% { transform: rotateZ(1deg); }
}

@keyframes flicker {
    0% { 
        transform: translateX(-45%) scale(0.95) rotate(-1deg);
        opacity: 0.9;
    }
    100% { 
        transform: translateX(-45%) scale(1.05) rotate(1deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

@keyframes dripping {
    0%, 100% { 
        transform: translateX(-50%) scaleY(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-50%) scaleY(1.3);
        opacity: 0.9;
    }
}

@keyframes glow {
    0% {
        box-shadow: 
            0 0 15px 0 #ffd700,
            0 -15px 35px 5px #ff6b6b,
            0 -25px 45px 10px #ff4500;
    }
    100% {
        box-shadow: 
            0 0 20px 5px #ffd700,
            0 -15px 40px 10px #ff6b6b,
            0 -25px 50px 15px #ff4500;
    }
}

@media (max-width: 768px) {
    .logo { font-size: 2.5rem; }
    .glowing-text { font-size: 1.8rem; }
    .candles-container { gap: 1rem; }
    .candle { width: 30px; }
    .email-link { font-size: 1rem; }
}

/* Hover efektleri */
.construction-box:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.flame-inner:hover {
    animation: flicker 0.3s infinite alternate;
    filter: blur(2px);
}
