/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Monospace', Arial, sans-serif;
    color: #fff;
    background-color: #161616;
    min-height: 100vh;
}

/* Banner Styling */
.banner {
    width: 100%;
    height: 100vh; /* Full screen height */
    position: relative;
    background-color: #161616;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Banner Header Text */
.banner-header {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #FF4F6D; /* Vibrant, cool color */
    font-size: 5rem; /* Increased font size for emphasis */
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif; /* Cool font style */
    z-index: 2;
}

/* Top Right Links */
.top-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.top-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6); /* Background for readability */
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.top-links a:hover {
    background-color: #6A0DAD; /* Highlight color on hover */
}

/* Join Now Button */
.join-button {
    position: absolute;
    bottom: 80px; /* Raised the button slightly */
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    background-color: #6A0DAD;
    padding: 30px 60px; /* Doubled button size */
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem; /* Larger font size */
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 2;
}

.join-button:hover {
    background-color: #55008A; /* Darker shade on hover */
}
