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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.candle-animation {
    width: 70px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(255, 182, 102, 0.4));
}

.flame {
    width: 24px;
    height: 45px;
    background: linear-gradient(to top, #ff4d4d, #ffb366);
    border-radius: 50% 50% 20% 20%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: flicker 2s infinite alternate;
    filter: blur(1px);
    box-shadow: 
        0 0 20px #ff4d4d,
        0 0 40px #ffb366,
        0 0 60px #ffd699;
    z-index: 2;
}

.flame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 18px;
    background: linear-gradient(to top, #ff4d4d, transparent);
    border-radius: 50% 50% 20% 20%;
    filter: blur(2px);
    animation: innerFlame 2s infinite alternate;
}

.wax {
    width: 50px;
    height: 100px;
    background: linear-gradient(to bottom, 
        #ffffff,
        #f8f8f8 20%,
        #f0f0f0 40%,
        #e8e8e8 60%,
        #e0e0e0 80%,
        #d8d8d8
    );
    border-radius: 25px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.1),
        0 0 8px rgba(0, 0, 0, 0.1);
}

.wax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px
        ),
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.8) 0%,
            transparent 60%
        );
    animation: texture 20s linear infinite;
}

.wax::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    height: 25px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.5) 50%,
        transparent
    );
    border-radius: 50% 50% 0 0;
    animation: melt 3s infinite;
}

/* Dekoratif detaylar */
.wax::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 60px;
    background: 
        linear-gradient(
            to right,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%
        );
    border-radius: 50%;
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(10px) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffb366, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffb366;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 70px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #ffb366;
    text-shadow: 0 0 10px rgba(255, 179, 102, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: #ffb366;
}

.newsletter {
    margin: 2rem 0;
}

.newsletter p {
    margin-bottom: 1rem;
}

#subscribe-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    background: linear-gradient(45deg, #ffb366, #ff4d4d);
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffb366;
}

@keyframes texture {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes melt {
    0% {
        transform: translateY(-100%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
}

@keyframes flicker {
    0% {
        transform: translateX(-50%) scale(1) rotate(-1deg);
        opacity: 1;
    }
    25% {
        transform: translateX(-50%) scale(0.95) rotate(1deg);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) scale(1.05) rotate(-1deg);
        opacity: 0.8;
    }
    75% {
        transform: translateX(-50%) scale(0.98) rotate(1deg);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-50%) scale(1) rotate(-1deg);
        opacity: 1;
    }
}

@keyframes innerFlame {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }

    #subscribe-form {
        flex-direction: column;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.6rem;
    }

    .countdown-item span:first-child {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
} 