/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

/* Background Container Styling */
.background-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.background1,
.background2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Smooth fade */
}

.background1 {
    z-index: 1;
}

.background2 {
    z-index: 2;
}

/* Overlay Content Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly opaque layer for better text contrast */
    z-index: 3;
    pointer-events: none; /* Prevent interaction with the overlay itself */
    padding: 20px;
}

.overlay * {
    pointer-events: auto; /* Enable interaction with child elements */
}


/* Outline Image Styling */
.outline-logo {
    width: 80%; /* Adjust to fit the same width as Virtual TMP text */
    max-width: 300px; /* Ensure it doesn't get too large */
    margin-bottom: 1rem; /* Space below the image */
    z-index: 4; /* Ensure it stays above the backgrounds */
}

/* Main Heading */
.main-title {
    font-size: 4.5rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    background: linear-gradient(85deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0.5) 97%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Makes the gradient visible */
    margin-bottom: 1rem;
    display: inline-block; /* Ensures gradient spans all letters */
}

/* Responsive Typography for Different Screens */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem; /* Further adjust font size for very small screens */
    }
}

/* Slogan */
.slogan {
    font-size: 1.5rem;
    font-weight: 400;
    color: #b0b0b0; /* Light gray for contrast */
    margin-bottom: 1rem;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow for readability */
}

/* Coming Soon */
.coming-soon {
    font-size: 1.2rem;
    font-weight: 300;
    color: #b0b0b0;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Discord Section */
.discord-section {
    margin-top: 1.5rem;
    text-align: center;
}

.discord-link {
    display: inline-block;
    transition: transform 0.3s ease; /* Smooth animation for hover effect */
    pointer-events: auto; /* Allow interaction on this element */
    cursor: pointer; /* Ensure a pointer cursor appears */
}

.discord-link:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.discord-icon {
    width: 50px; /* Adjust size as needed */
    height: auto;
}

.discord-text {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Optional shadow for visibility */
    font-weight: 400;
}

