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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow: hidden;
}

.sr-only {
    color: transparent;
}

/* Container chính - match với Figma */
.container {
    position: relative;
    width: 100vw;
    height: 85vh;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:50px;
}

/* Background Image - chính xác theo Figma */
.background-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 100vh;
    background-image: url('./assets/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}


.logo-container {
    width: 90%;
    max-width: 500px;
    z-index: 2;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Bottom Image Container - chính xác theo Figma positioning */
.bottom-image-container {
    width: 70%;
    max-width: 350px;
    z-index: 2;
    cursor: pointer;
}

.bottom-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
