/* Full-screen Explore Page */
.explore-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #e4ded4; /* Dark background */
    color: #000000;
    text-align: center;
    font-family: "Arial", sans-serif;
    padding: 20px;
}

/* Message Container */
.message-container {
    max-width: 80%;
}

/* Big Animated Text */
.message-container h1 {
    font-size: 5vw;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Ensure Spans Are Block Elements */
.message-container h1 span {
    display: inline-block;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px);
}

/* Subtitle Text */
.sub-text {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #d39e00;
    opacity: 0; /* Initially hidden */
}

/* Back Button */
.back-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.2rem;
    background: #d39e00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    opacity: 0; /* Initially hidden */
}

.back-btn:hover {
    background: #a35a2b;
    transform: scale(1.05);
}
.surya-logo{
    width: 20vw;
}