/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
}
/* Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0a; /* Dark background */
  padding: 0.5rem 1rem;
  position: sticky; /* Stays on top when scrolling */
  top: 0;
  z-index: 999; /* Ensures nav is above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* SHO Heading inside Nav (Optional) */
.sho-heading {
  font-size: 28px;
  color: #ffcc00;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Logo (Optional) */
.logo img {
  width: 50px;
  height: auto;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger Icon */
.menu-icon {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px;
  transition: 0.4s;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex; /* Horizontal layout on desktop */
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links li a {
  color: #ffcc00;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffa500; /* Lighter orange on hover */
}

/* MEDIA QUERY: Mobile View */
@media (max-width: 768px) {
  /* Show Hamburger Icon */
  .menu-icon {
    display: flex;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    position: absolute;
    top: 60px; /* just below the nav container */
    right: 0;
    background: #0a0a0a;
    flex-direction: column; /* Vertical layout */
    width: 200px;
    max-height: 0; /* Collapsed by default */
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-left: 2px solid #ffcc00;
    z-index: 998;
  }

  /* When active class is toggled, menu expands */
  .nav-links.active {
    max-height: 300px; /* Enough to show all links */
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }
}

/* Sticky Navigation - ensures nav stays above content */
header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Higher than other elements */
    background: rgba(26,26,26, 0.95); /* Slightly transparent dark background */
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Navigation Container */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation List */
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/* Navigation Items */
.navbar ul li {
    margin: 0 15px;
    position: relative;
}

/* Navigation Links */
.navbar ul li a {
    color: #ffcc00; /* Base color */
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover Effect on Links */
.navbar ul li a:hover {
    color: #ffa500; /* Changes to a warmer orange on hover */
}

/* Underline Animation on Hover */
.navbar ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ffa500;
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* Optional: Active Link Styling */
.navbar ul li a.active {
    color: #ffa500;
}
/* Header Section */


/* Header */
header {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #FFD700; /* Gold color */
}




nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #FFD700; /* Gold */
}

/* Sections */
section {
    padding: 20px;
    text-align: center;
}

/* Forms */
form {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    width: 50%;
    margin: auto;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-size: 1.2em;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background-color: #222;
    color: white;
}

button {
    background-color: #FFD700;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

button:hover {
    background-color: #ffcc00;
}

/* Footer */
footer {
    text-align: center;
    background-color: #1e1e1e;
    padding: 15px;
    margin-top: 20px;
    }

/* Hover Effect for Navigation */
nav ul li a {
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ff4500; /* Orange-red effect */
    text-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Animation */
button {
    transition: all 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.1);
    background-color: #ff4500;
}

/* Hero Section */
#hero {
    background: url("images/sho-logo.png") center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 span {
    color: #ffcc00;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.btn {
    display: inline-block;
    margin: 20px 10px;
    padding: 12px 24px;
    background: #ffcc00;
    color: black;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.1);
}

.btn.secondary {
    background: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Glowing Button Effect */
button {
    position: relative;
    overflow: hidden;
}

button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, #ff4500, #ffd700, #ff4500);
    z-index: -1;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

button:hover::before {
    opacity: 1;
    }

/* Latest News Section */
#news {
    background: #1a1a1a;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.news-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.news-item {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.6);
    transition: transform 0.3s ease-in-out;
}

.news-item:hover {
    transform: scale(1.05);
}

.news-item h3 {
    color: #ff4500;
}

.news-item p {
    font-size: 0.9em;
    margin: 10px 0;
}

.news-item a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.news-item a:hover {
    text-decoration: underline;
}
/* Leaderboard Section */
#leaderboard {
    background: #111;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.leaderboard-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

table {
    width: 80%;
    max-width: 600px;
    border-collapse: collapse;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.6);
}

th, td {
    padding: 15px;
    border-bottom: 1px solid #333;
}

th {
    background: #ff4500;
    color: white;
}

tbody tr:hover {
    background: rgba(255, 69, 0, 0.2);
    }
/* Match Highlights Section */
#highlights {
    background: #1a1a1a;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.highlights-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video {
    width: 300px;
    background: #222;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.6);
}

.video p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #ffd700;
    }
/* Achievements Section */
#achievements {
    text-align: center;
    padding: 50px 0;
    background: #111;
    color: white;
}

.achievements-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.achievement-card {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8);
    text-align: center;
}

.achievement-card img {
    width: 80px;
    height: 80px;
}

.achievement-card h3 {
    color: #ffcc00;
    margin: 10px 0;
}

.achievement-card p {
    font-size: 14px;
    color: #ddd;
}

/* SHO Leadership Section */
#sho-leaders {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(90deg, #222, #111);
    color: white;
}

.leaders-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.leader-card {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.8);
    text-align: center;
    transition: transform 0.3s;
}

.leader-card:hover {
    transform: scale(1.05);
}

.leader-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
}

.leader-card h3 {
    color: #ffcc00;
    margin: 10px 0;
}

.leader-card p {
    font-size: 14px;
    color: #ddd;
}

.about-section {
    padding: 50px 20px;
    background: linear-gradient(to right, #111, #222); /* Stylish dark gradient */
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.about-section h2 {
    font-size: 36px;
    color: #ffcc00; /* Golden touch */
    margin-bottom: 20px;
}

.about-section h3 {
    font-size: 28px;
    margin-top: 20px;
    color: #ff6600; /* Stylish orange */
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section ul li strong {
    color: #fff;
}

.about-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Header Animation - Strategic Heroes Oracles */
.sho-heading {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowingText 2s infinite alternate, slideIn 1.5s ease-in-out;
    letter-spacing: 3px;
    text-shadow: 4px 4px 10px rgba(255, 140, 0, 0.8);
}

@keyframes glowingText {
    0% {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500;
    }
    100% {
        text-shadow: 0 0 20px #FFA500, 0 0 30px #FFD700;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .sho-heading {
        font-size: 36px; /* Reduced font size for mobile */
    }
    
    .navbar ul {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .navbar ul li {
        margin: 10px 0;  /* Spacing for vertical stacking */
    }
    
    .navbar ul li a {
        font-size: 16px;  /* Slightly smaller text */
    }
    }
span, strong {
    display: inline !important;
    white-space: normal !important;
    word-break: normal !important;
    }
footer {
  background: #0a0a0a;
  padding: 20px 10px;
  text-align: center;
  color: #fff;
  border-top: 2px solid #ffcc00;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.social-links a {
  color: #ffcc00;
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffa500;
}
.faq-answer {
    display: none;
    padding: 10px;
    color: #ccc;
    transition: max-height 0.3s ease-in-out;
}
.faq-button-container {
    text-align: center;
    margin-top: 20px;
}

/* FAQ Button Styling */
.faq-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(255, 102, 0, 0.8);
    transition: all 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}

/* FAQ Icon */
.faq-button::before {
    content: '❓'; /* FAQ Icon */
    font-size: 20px;
    margin-right: 8px;
}

/* Hover Effect */
.faq-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 204, 0, 1);
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0px 0px 10px rgba(255, 102, 0, 0.8); }
    50% { box-shadow: 0px 0px 20px rgba(255, 204, 0, 1); }
    100% { box-shadow: 0px 0px 10px rgba(255, 102, 0, 0.8); }
                                        }

/* Global Page Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 20px;
    font-weight: bold;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Loader Logo Animation */
.loader-logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
    animation: pulse 0.5s infinite alternate ease-in-out;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
    }
/* General Navbar Styling */
.navbar {
    background: #0a0a0a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0px 2px 5px rgba(255, 102, 0, 0.5);
}

.logo a {
    color: #ffcc00;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

/* Menu Icon for Mobile */
.menu-icon {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff6600;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        transition: max-height 0.4s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }
    }
/* Navbar General */
.navbar {
    background: #0a0a0a;
    padding: 15px;
    text-align: center;
}

/* Side Menu Button */
.side-menu-btn {
    background: #ffcc00;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.side-menu-btn:hover {
    background: #ff9900;
}

/* Side Menu Styling */
.side-menu {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    box-shadow: 4px 0px 10px rgba(255, 204, 0, 0.3);
}

.side-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #ff6600;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    color: #ffcc00;
    cursor: pointer;
}
.navbar {
    display: flex;
    align-items: center; /* Align items properly */
    justify-content: space-between;
}
.youtube-videos {
    text-align: center;
    padding: 40px 20px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-container iframe {
    width: 320px;
    height: 180px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.view-more-container {
    margin-top: 20px;
}

.view-more-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(255, 102, 0, 0.8);
    transition: all 0.3s ease-in-out;
}

.view-more-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 204, 0, 1);
        }

/* Alliances Page Styles */
header {
    text-align: center;
    margin: 20px 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
}

.alliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Alliance Card */
.alliance-card {
    background: linear-gradient(135deg, #222, #444);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.alliance-card img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.alliance-card:hover img {
    transform: scale(1.1);
}

.alliance-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Unique Colors for Each Alliance */
.hitwicket { border-left: 5px solid #ffcc00; }
.freefire { border-left: 5px solid #ff5733; }
.bgmi { border-left: 5px solid #00ff99; }
.efootball { border-left: 5px solid #3366ff; }
.coc { border-left: 5px solid #ff3300; }

/* Game Category Heading */
.game-category {
    font-size: 22px;
    text-align: center;
    margin-top: 30px;
    color: #ffcc00;
}

/* Join Now Button */
.join-btn {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background: #ffcc00;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.join-btn:hover {
    background: #ffa500;
    transform: scale(1.1);
}
.dropdown-menu {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    text-align: center;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    color: #ffcc00;
}
/* Hide elements initially */
.hidden {
    opacity: 0;
    transform: translateY(50px); /* Default: appears from bottom */
    transition: all 0.8s ease-in-out;
}

/* Appear from the top */
.from-top {
    transform: translateY(-50px);
}

/* Appear from the left */
.from-left {
    transform: translateX(-50px);
}

/* Appear from the right */
.from-right {
    transform: translateX(50px);
}

/* When in view, make it visible */
.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
    }
/* Recruitment Page Header */
.recruitment-header {
    text-align: center;
    background: linear-gradient(to right, #ff6600, #ffcc00);
    color: white;
    padding: 50px 20px;
    position: relative;
}

.recruitment-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.recruitment-header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Buttons */
.whatsapp-btn, .explore-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: #25D366;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin: 10px;
}

.explore-btn {
    background: #007bff;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

.explore-btn:hover {
    background: #0056b3;
}

/* Benefits Section */
.recruitment-benefits {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.benefit-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: #333;
}

/* Recruitment Form */
.recruitment-form {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #444, #222);
    color: white;
}

.recruitment-form h2 {
    margin-bottom: 20px;
}

.recruitment-form input, 
.recruitment-form select, 
.recruitment-form textarea {
    width: 80%;
    max-width: 500px;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.recruitment-form button {
    background: #ff6600;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.recruitment-form button:hover {
    background: #cc5500;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
    font-size: 0.9rem;
    }
/* Improve heading contrast */
.recruitment-header h1 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Button Hover Effects */
.whatsapp-btn:hover, .explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Smooth section transitions */
.recruitment-benefits, .recruitment-form {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

/* Add a slight delay for smooth appearance */
.recruitment-benefits.visible, .recruitment-form.visible {
    opacity: 1;
    transform: translateY(0);
    }
.why-join-us {
    color: #222; /* Darker text color */
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-align: center;
        }
.why-join-us {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.achievement-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:20px;
}

.achievement-card{
background:#1e1e1e;
padding:20px;
border-radius:10px;
color:white;
box-shadow:0 4px 10px rgba(0,0,0,0.4);
transition:transform 0.2s;
}

.achievement-card:hover{
transform:translateY(-5px);
}

.achievement-card h3{
margin-bottom:10px;
color:#ffd700;
}
.alliances-showcase{
text-align:center;
padding:50px 20px;
}

.logo-slider{
overflow:hidden;
position:relative;
width:100%;
}

.logo-track{
display:flex;
gap:40px;
animation:scrollLogos 20s linear infinite;
}

.logo-track img{
height:80px;
transition:transform 0.3s;
}

.logo-track img:hover{
transform:scale(1.2);
}

@keyframes scrollLogos{
0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}
}
.sho-countdown-section{
text-align:center;
padding:60px 20px;
background:#0f172a;
color:white;
}

.event-title{
font-size:32px;
margin-bottom:30px;
color:#facc15;
}

.sho-countdown{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.time-card{
background:#1e293b;
padding:20px;
border-radius:12px;
width:100px;
box-shadow:0 0 10px rgba(0,0,0,0.5);
}

.time-card span{
font-size:32px;
font-weight:bold;
color:#facc15;
}

.time-card p{
margin-top:5px;
font-size:14px;
}

#event-status{
margin-top:20px;
font-size:18px;
color:#22c55e;
}
.legion-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;

}

.legion-card{

background:#1e293b;
color:white;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.4);

}

.legion-card h3{

color:#facc15;

}

.leaderboard{

width:100%;
border-collapse:collapse;
margin-top:20px;

}

.leaderboard th{

background:#111827;
color:#facc15;
padding:10px;

}

.leaderboard td{

background:#1e293b;
color:white;
padding:10px;
text-align:center;

}
table{

width:100%;
border-collapse:collapse;
margin-top:20px;

}

th{

background:#111827;
color:#facc15;
padding:10px;

}

td{

background:#1e293b;
color:white;
padding:10px;
text-align:center;

}

input{

padding:10px;
margin-top:10px;
width:250px;

}
.stats{

text-align:center;
padding:40px;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:20px;

}

.stat{

background:#1e293b;
color:white;
padding:20px;
border-radius:10px;

}

.stat h3{

color:#facc15;
font-size:28px;

}
.stats{

text-align:center;
padding:40px;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:20px;

}

.stat{

background:#1e293b;
color:white;
padding:20px;
border-radius:10px;

}

.stat h3{

color:#facc15;
font-size:28px;

}
/* HERO SECTION */

.leader-hero{
text-align:center;
padding:60px 20px;
background:linear-gradient(135deg,#020617,#0f172a);
color:white;
}

.leader-hero h1{
font-size:42px;
color:#facc15;
}

.leader-hero p{
opacity:0.8;
}

/* SECTION */

.leader-container{
padding:40px 20px;
text-align:center;
}

/* GRID */

.leader-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

/* CARD */

.leader-card{
background:#1e293b;
color:white;
padding:20px;
border-radius:12px;
transition:0.3s;
position:relative;
overflow:hidden;
}

/* HOVER ANIMATION */

.leader-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 0 20px rgba(250,204,21,0.5);
}

/* ROLE TEXT */

.role{
color:#facc15;
margin:10px 0;
}

/* BADGE */

.badge{
display:inline-block;
margin-top:10px;
padding:5px 10px;
border-radius:6px;
font-size:12px;
}

/* GOLD BADGE */

.gold{
background:gold;
color:black;
}

/* GLOW EFFECT */

.glow{
box-shadow:0 0 20px rgba(250,204,21,0.6);
}

/* ANIMATION */

.leader-card{
animation:fadeUp 0.6s ease forwards;
opacity:0;
}

@keyframes fadeUp{
0%{
transform:translateY(20px);
opacity:0;
}
100%{
transform:translateY(0);
opacity:1;
}
}
body{
background:#020617;
color:white;
}

.btn{
background:#facc15;
color:black;
padding:10px 20px;
border-radius:8px;
}

.btn:hover{
transform:scale(1.05);
}
