/* Features Section */
.features {
    padding: 50px 20px;
    background: #121212;
    color: #fff;
    text-align: center;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.6);
}

/* About Us Section */
.about {
    padding: 50px 20px;
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #f9c802;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Server Rules Section */
.rules {
    padding: 50px 20px;
    background-color: #2b2b2b;
    color: #fff;
    text-align: center;
}

.rules-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.rules-text {
    flex: 1;
    max-width: 600px;
}

.rules-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.rules-text h3, .rules-text h4 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #f9c802;
}

.rules-text ul {
    list-style: none;
    padding: 0;
}

.rules-text ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rules-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.rules-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Join Us Section */
.join-us {
    padding: 50px 20px;
    background: #121212;
    color: #fff;
    text-align: center;
}

.join-btn-glowing {
    padding: 15px 30px;
    font-size: 1.5rem;
    color: #fff;
    background: #f9c802;
    border: 2px solid #f9c802;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0px 0px 15px #f9c802;
    transition: all 0.3s ease;
}

.join-btn-glowing:hover {
    background-color: #f9c802;
    color: #121212;
    box-shadow: 0px 0px 30px #f9c802;
}
/* Footer */
.footer {
    background-color: #121212;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
}

.social-links {
    margin-top: 15px;
}

.social-icon {
    margin: 0 10px;
    text-decoration: none;
    color: #f9c802;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icon:hover {
    color: #fff;
    text-decoration: underline;
}
/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('vegas-background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
}

.hero-title {
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    color: #f9c802;
}

.hero-title span {
    color: #fff;
    text-shadow: 0px 0px 15px #f9c802;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: lighter;
    opacity: 0.8;
}

.hero-buttons .button {
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    border: 2px solid #f9c802;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .join-btn:hover {
    background: #f9c802;
    color: #000;
}

.hero-buttons .explore-btn:hover {
    background: transparent;
    color: #f9c802;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Enable smooth scrolling globally */
html {
    scroll-behavior: smooth; /* Enable smooth scrolling for anchor links */
    height: 100%; /* Full height of the page */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Ensure body scrolls normally */
body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    margin: 0;
    padding: 0;
}

/* If you're using specific containers for scrolling, apply to them as needed */
.some-scrollable-element {
    overflow-y: auto; /* Allows vertical scrolling for this element */
    max-height: 500px; /* Adjust to the height you want */
}










/* Staff Page Styling */
.staff-section {
    padding: 20px;
    text-align: center;
}

.staff-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.staff-member {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

.staff-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.staff-member h3 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.staff-member p {
    font-size: 1rem;
    color: #555;
}
