/* ============================================
   VENTA - COMING SOON PAGE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.coming-soon {
    text-align: center;
    max-width: 500px;
}

/* Centered Image */
.coming-soon-image {
    width: auto;
    height: 350px;
    margin: 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Title */
.coming-soon-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: 17px;
    color: #a1a1aa;
    font-weight: 400;
    margin-bottom: 60px;
}

/* Back Button */
.back-button {
    display: inline-block;
    color: #0082dc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-button:hover {
    color: #ffffff;
}