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

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.logo {
    margin-bottom: 80px;
    width: 100%;
    text-align: center;
}

.logo img {
    height: auto;
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}


.coming-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 110px;
}


.coming-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cc3535; /* S�t�tk�k/lila */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 50px 10px 30px;
    clip-path: polygon(0% 3%, 4% 1%, 8% 5%, 12% 2%, 16% 6%, 20% 1%, 25% 4%, 30% 2%, 35% 5%, 40% 1%, 44% 4%, 48% 2%, 52% 6%, 56% 1%, 60% 5%, 65% 2%, 70% 6%, 75% 1%, 80% 5%, 84% 2%, 88% 6%, 92% 1%, 96% 4%, 100% 3%, 100% 97%, 96% 99%, 92% 95%, 88% 98%, 84% 94%, 80% 99%, 75% 95%, 70% 98%, 65% 94%, 60% 99%, 56% 96%, 52% 99%, 48% 95%, 44% 98%, 40% 94%, 35% 98%, 30% 95%, 25% 99%, 20% 94%, 16% 98%, 12% 95%, 8% 99%, 4% 96%, 0% 97%);
}

.coming-text {
    color: white;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    font-weight: 600;
    max-width: 580px;
}


.paper-curl-shadow {
    content: "";
    position: absolute;
    right: -30px;
    top: -20px;
    width: 60px;
    height: 150px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -35px 15px 25px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.paper-curl {
    position: absolute;
    right: -40px;
    top: -30px;
    width: 140px;
    height: 170px;
    background: linear-gradient(to right, #f4f4f4 0%, #ffffff 30%, #e0e0e0 70%, #f0f0f0 100%);
    border-radius: 0 40% 60% 0;
    transform: perspective(600px) rotateY(-45deg) rotateX(5deg);
    z-index: 2;
    clip-path: polygon(0% 15%, 85% 0%, 100% 10%, 90% 90%, 60% 100%, 0% 85%, 25% 50%);
}

.social {
    margin-top: 100px;
    display: flex;
    gap: 30px;
}

.social a {
    color: #cc3535;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social a:hover {
    opacity: 0.6;
}

