/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* Main container */
.container {
    background-color: #ffffff;
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Background image */
.background {
    position: absolute;
    background-image: url('background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
}

/* Logo */
.logo {
    position: absolute;
    background-image: url('logo.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 143px;
    width: 131px;
    top: calc(50% + 0.5px);
    left: calc(50% + 0.5px);
    transform: translate(-50%, -50%);
}

/* Coming Soon text */
.coming-soon-text {
    position: absolute;
    color: white;
    text-align: center;
    top: calc(50% + 100px);
    left: calc(50% + 0.5px);
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        height: 120px;
        width: 110px;
    }
    
    .coming-soon-text {
        font-size: 16px;
        top: calc(50% + 80px);
    }
}

@media (max-width: 480px) {
    .logo {
        height: 100px;
        width: 92px;
    }
    
    .coming-soon-text {
        font-size: 14px;
        top: calc(50% + 70px);
    }
}