* {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-bg {
    position: relative;
    width: 100%;
    background: #cc3535;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 80px 30px 40px;
    box-sizing: border-box;
    z-index: 1;
    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;
}

/* This masks out the straight red edge by placing a white sheet with the identical 3D transform behind the curl! */
.paper-edge-left {
    position: absolute;
    right: -40px;
    top: -25px;
    bottom: -25px;
    width: 140px;
    background: #ffffff;
    z-index: 2;
    transform: perspective(600px) rotateY(-45deg) rotateX(5deg);
    clip-path: polygon(0% 25px, 100% 0%, 100% 100%, 0% calc(100% - 25px), 25% 50%);
}

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

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

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

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

@media (max-width: 768px) {
    .coming-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .coming-bg {
        padding: 20px 60px 20px 20px;
    }

    .paper-edge-left {
        right: -20px;
        top: -15px;
        bottom: -15px;
        width: 100px;
        transform: perspective(600px) rotateY(-45deg) rotateX(5deg);
        clip-path: polygon(0% 15px, 100% 0%, 100% 100%, 0% calc(100% - 15px), 25% 50%);
    }

    .paper-curl-shadow {
        right: -15px;
        top: -10px;
        bottom: -10px;
        width: 40px;
        box-shadow: -20px 10px 15px rgba(0, 0, 0, 0.5);
    }

    .paper-curl {
        right: -20px;
        top: -15px;
        bottom: -15px;
        width: 100px;
        transform: perspective(600px) rotateY(-45deg) rotateX(5deg);
        clip-path: polygon(0% 15px, 85% 0%, 100% 10%, 90% 90%, 60% 100%, 0% calc(100% - 15px), 25% 50%);
    }
}
