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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    animation: backgroundShift 10s ease-in-out infinite;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

@keyframes backgroundShift {
    0%, 100% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    }
    50% {
        background: linear-gradient(135deg, #ff6b9d 0%, #667eea 50%, #764ba2 100%);
    }
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.header {
    position: absolute;
    top: 20px;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-image {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.6));
    animation: logoFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 35px rgba(255, 107, 157, 0.4));
}

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

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.logo h1 span {
    color: #ff6b9d;
    margin-left: 10px;
}

@keyframes glow {
    from {
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 157, 0.3);
    }
    to {
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 157, 0.6);
    }
}

.main-content {
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 180px;
}





.coming-soon-text p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slide 3s ease-in-out infinite;
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.countdown-item:nth-child(2) { animation-delay: 0.5s; }
.countdown-item:nth-child(3) { animation-delay: 1s; }
.countdown-item:nth-child(4) { animation-delay: 1.5s; }

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

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-item label {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.email-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    animation: slideUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.email-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.email-form h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    transform: scale(1.02);
}

.subscribe-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff6b9d, #ff8a80);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.subscribe-form button:hover {
    background: linear-gradient(45deg, #ff5722, #ff6b9d);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.privacy-text {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
}

.social-media {
    z-index: 10;
    text-align: center;
    margin-bottom: 30px;
}

.social-media h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.trendyol:hover { background: #ff6600; }
.social-link.hepsiburada:hover { background: #ff6000; }

.trendyol-icon, .hb-icon {
    font-weight: bold;
    font-size: 1rem;
}

.social-link.trendyol {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.social-link.hepsiburada {
    background: rgba(255, 96, 0, 0.1);
    border: 1px solid rgba(255, 96, 0, 0.3);
    font-size: 0.8rem;
}

.footer {
    z-index: 10;
    color: white;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 40px;
    text-align: center;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particle-float 6s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(6) {
    left: 20%;
    animation-delay: 5s;
    animation-duration: 12s;
}

.particle:nth-child(7) {
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 8s;
}

.particle:nth-child(8) {
    left: 60%;
    animation-delay: 4.5s;
    animation-duration: 11s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Yıldız Efektleri */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s infinite alternate;
}

.star:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 40%;
    left: 85%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 70%;
    left: 25%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 30%;
    left: 60%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 80%;
    left: 75%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

/* Işık Halkası Efekti */
.light-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite, pulse-ring 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 150px;
        height: 150px;
    }
    
    .main-content {
        margin-top: 160px;
        padding: 0 15px;
    }
    
    .countdown {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .email-form {
        padding: 20px 15px;
        margin-bottom: 25px;
        max-width: 100%;
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .subscribe-form input {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
        margin: 0;
    }
    
    .subscribe-form button {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        justify-content: center;
    }
    

    

    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .email-form {
        padding: 30px 20px;
        margin: 0 20px 40px 20px;
    }
    
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    
    .subscribe-form input {
        min-width: 100%;
        margin-bottom: 15px;
    }
    
    .header {
        top: 30px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .logo-image {
        width: 120px;
        height: 120px;
    }
    
    .main-content {
        margin-top: 130px;
    }
    
    .countdown {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .email-form {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .coming-soon-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .social-media {
        margin-bottom: 20px;
    }
    

    
    .light-ring {
        width: 200px;
        height: 200px;
    }
    

    
    .countdown-item span {
        font-size: 1.2rem;
    }
    
    .countdown-item label {
        font-size: 0.55rem;
    }
    
    .email-form {
        padding: 18px 10px;
        margin-bottom: 15px;
        width: calc(100% - 16px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .subscribe-form input {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
        margin: 0;
        box-sizing: border-box;
    }
    
    .subscribe-form button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 360px) {
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .main-content {
        margin-top: 90px;
        padding: 0 5px;
    }
    
    .countdown {
        gap: 3px;
        margin-bottom: 15px;
    }
    
    .countdown-item {
        padding: 8px 2px;
        border-radius: 6px;
    }
    
    .countdown-item span {
        font-size: 1rem;
    }
    
    .countdown-item label {
        font-size: 0.5rem;
    }
    
    .email-form {
        padding: 15px 8px;
        width: calc(100% - 10px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .email-form h3 {
        font-size: 0.9rem;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .subscribe-form input {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 10px 12px;
        font-size: 0.85rem;
        margin: 0;
        box-sizing: border-box;
    }
    
    .subscribe-form button {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .coming-soon-text p {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Yeni animasyon keyframeleri */
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

@keyframes explode {
    to {
        transform: translate(var(--dx), var(--dy)) scale(0);
        opacity: 0;
    }
}
