body {
    background-color: black;
    overflow: hidden;
    color: white;
    min-width: 320px;
    margin: 0;
    padding: 0;
}

#splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.splash-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.splash-screen.active {
    display: flex;
    opacity: 1;
}

.splash-screen img {
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.tagline {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 15px;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: gray;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: black;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.next-button {
    width: 260px;
    height: 40px;
    background-color: black;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: block;
}

.next-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Web view styles */
#web-splash {
    background-color: black;
    color: white;
    display: none; /* Changed from flex to ensure JS controls display */
}

#web-splash img {
    max-width: 40%; /* Made logo slightly smaller to match design */
}

/* Mobile screens styles */
.mobile-splash-screen {
    background-color: white;
    color: black;
    padding: 20px;
}

/* Media queries */
@media (min-width: 768px) {
    .next-button,
    #mobile-screens {
        display: none !important;
    }

    #web-splash {
        display: flex !important; /* Force display for web view */
        opacity: 1 !important;
    }

    /* Hide all mobile screens in web view */
    #mobile-screens .splash-screen {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #web-splash {
        display: none !important;
    }

    #mobile-screens {
        display: block;
        width: 100%;
        height: 100%;
    }
}