@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Shared button style */
.uniform-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 9999px; /* full rounded */
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.uniform-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon styles */
.uniform-button img {
  width: 24px;
  height: 24px;
}
body {
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
.discord-btn,
.instagram-button,
.relative.inline-flex {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-btn:hover,
.instagram-button:hover,
.relative.inline-flex:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.nav-logo {
  height: 40px;
  width: auto;
}

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

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

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

/* Hero Section */
.hero {
  height: 100vh; /* Original, probably too tall */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Optional blur overlay */
}

/* Add media query for desktop screens */
@media screen and (min-width: 768px) {
  .hero {
    height: 70vh; /* Reduce height on larger screens */
    padding: 60px 20px;
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffcc00;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.discord-btn:hover {
  background-color: #4752C4;
}

.discord-icon {
  width: 20px;
  height: 20px;
}

/* Countdown */
.countdown {
  font-size: 3rem;
  text-align: center;
  margin: 20px 0;
  color: #ffcc00;
  font-weight: bold;
  letter-spacing: 2px;
}

.countdown-timer {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Video Section */
.video-wrapper {
  margin: 40px auto;
  padding: 20px;
  background: #111;
  color: #f4f4f4;
  text-align: center;
  border-radius: 12px;
  max-width: 90%;
  border: 2px solid #ffcc00;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.video-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
/* Players Page Styling */
.players-section {
  padding: 60px 20px;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  max-width: 1000px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.players-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.lineup-category {
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.lineup-category:hover {
  transform: scale(1.03);
}

.lineup-category h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
}

.timer {
  margin-top: 50px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  display: inline-block;
}

.timer h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffdd57;
}

.countdown-timer {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  background: #222;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 2px;
}
/* About Page Styling */
.about-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffcc00;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}
.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.4);
}

.instagram-icon {
  width: 20px;
  height: 20px;
}
footer {
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  z-index: 2;
  backdrop-filter: blur(5px);
  text-align: center;
}
