/* 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;
}

/* Header Styles */
.header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header .logo img {
    width: 150px;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.header nav ul li a:hover {
    text-decoration: underline;
}

/* Banner Styling (for Gamers Page) */
.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 color */
    font-size: 5rem; /* Increased font size */
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    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);
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.top-links a:hover {
    background-color: #6A0DAD;
}

/* Join Now Button */
.join-button {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    background-color: #6A0DAD;
    padding: 30px 60px;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 2;
}

.join-button:hover {
    background-color: #55008A;
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 120px auto;
    padding: 20px;
    color: #ffffff;
    background-color: #161616;
}

.faq h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #FF4F6D;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h2 {
    font-size: 1.5rem;
    color: #6A0DAD;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
    max-width: 600px;
    margin: 120px auto;
    padding: 20px;
    background-color: #161616;
    color: #ffffff;
    text-align: left;
}

.contact-form h1 {
    font-size: 2.5rem;
    color: #FF4F6D;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #6A0DAD;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    background-color: #333333;
    color: #ffffff;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #6A0DAD;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #55008A;
}

/* Thank You Pop-up */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #161616;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
    width: 300px;
}

.popup-content p {
    margin-bottom: 20px;
}

.popup-content button {
    padding: 10px 20px;
    background-color: #6A0DAD;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.popup-content button:hover {
    background-color: #55008A;
}

/* Contact Support Footer */
.contact-support {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.contact-support a {
    color: #6A0DAD;
    text-decoration: none;
    font-weight: bold;
}

.contact-support a:hover {
    color: #FF4F6D;
}
