/* Welcome Modal Styles */
.welcome-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(45, 45, 45, 0.95);
    animation: fadeIn 0.3s ease-in;
}

.welcome-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: 100%;
    max-height: 100vh;
    animation: slideIn 0.4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-modal-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 95vh;
    object-fit: contain;
}

.welcome-modal-button {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5px;
    box-shadow: none;
    z-index: 10;
}

.welcome-modal-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateX(-50%);
    border-color: #ffffff;
}

.welcome-modal-button:active {
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles */
@media all and (max-width: 1024px) {
    .welcome-modal-content {
        max-width: 100%;
        max-height: 100vh;
    }

    .welcome-modal-image {
        max-height: 90vh;
    }

    .welcome-modal-button {
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* Mobile Styles */
@media all and (max-width: 767px) {
    .welcome-modal-content {
        max-width: 100%;
        max-height: 100vh;
        padding: 0;
    }

    .welcome-modal-image {
        max-height: 85vh;
    }

    .welcome-modal-button {
        font-size: 11px;
        padding: 8px 24px;
    }
}

/* Small Mobile Styles */
@media all and (max-width: 480px) {
    .welcome-modal-content {
        max-width: 100%;
        padding: 0;
    }

    .welcome-modal-image {
        max-height: 80vh;
    }

    .welcome-modal-button {
        font-size: 10px;
        padding: 7px 20px;
    }
}

/* Landscape orientation on mobile */
@media all and (max-height: 600px) and (orientation: landscape) {
    .welcome-modal-content {
        max-height: 100vh;
    }

    .welcome-modal-image {
        max-height: 90vh;
    }

    .welcome-modal-button {
        font-size: 8px;
        padding: 4px 10px;
        bottom: 4px;
    }
}

/* Extra small screens */
@media all and (max-width: 360px) {
    .welcome-modal-button {
        font-size: 8px;
        padding: 4px 8px;
        bottom: 4px;
    }
}