/* ===================== */
/*      BASE STYLES      */
/* ===================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  animation: fadeIn 1s ease-in-out;
  position: relative;
}



@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#background-video {
  filter: brightness(0.5) contrast(1.1);
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  
}


.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* ===================== */
/*        NAVBAR         */
/* ===================== */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 30px;
  color: white;
  position: relative;
  z-index: 2;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.nav-center h1 {
  margin: 0;
  font-size: 20px;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  flex-direction: row; /* change from column */
  align-items: center;
  gap: 15px;
}


.nav-right a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.nav-right a:hover {
  text-decoration: underline;
}

.hamburger {
  cursor: pointer;
}

/* ===================== */
/*        SIDEBAR        */
/* ===================== */
.sidebar {
  position: fixed;
  top: 60px;
  left: -260px;
  width: 250px;
  height: calc(100% - 60px);
  background-color: rgba(0, 0, 0, 0.95);
  padding: 0;
  transition: left 0.4s ease;
  z-index: 5;
  overflow-y: auto;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.6);
}

.sidebar.active {
  left: 0;
}

.menu-group {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar .menu-group:last-child {
  border-bottom: none;
}

.menu-group ul {
  list-style: none;
  padding-left: 0;
}

.menu-group li {
  margin: 10px 0;
}

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

.menu-group a:hover {
  text-decoration: underline;
}

.sidebar, .sidebar * {
  cursor: default;
}

/* ===================== */
/*      MAIN CONTENT     */
/* ===================== */
.main-content {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}


/* ===================== */
/*         FOOTER        */
/* ===================== */
footer {
  background: none;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: white;
}

.footer-logo {
  position: absolute;
  right: 30px;
  bottom: 20px;
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ===================== */
/*      MUSIC PLAYER     */
/* ===================== */
.music-box {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 15px 20px;
  backdrop-filter: blur(4px);
  color:  rgb(122, 0, 192);
  border-bottom: 1px solid rgb(255, 196, 35);
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.album-art {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.track-info h4 {
  color: rgb(255, 196, 35);
  margin: 0;
}

.track-info p {
  color: rgb(255, 196, 35);
  margin: 0;
}

.player-controls button {
  background: none;
  border: none;
  color:rgb(255, 196, 35);
  font-size: 18px;
  cursor: pointer;
  margin: 0 5px;
}

.time-info {
  margin-left: auto;
  font-size: 12px;
  color: rgb(255, 196, 35);
}

.playlist {
  margin-top: 15px;
  list-style: none;
  padding: 0;
  border-top: 1px solid #333;
}

.playlist li {
  padding: 10px;
  border-bottom: 1px solid rgb(122, 0, 192);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.playlist li:hover {
  background: rgba(255, 102, 204, 0.1);
}

.playlist li.active {
  color: rgb(255, 196, 35);
  font-weight: bold;
}
/* Music Progress Bar */
#progressBar {
  width: 100%;
  margin-top: 10px;
  appearance: none;
  height: 6px;
  background: rgb(255, 196, 35);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

/* Volume */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

#volumeSlider {
  width: 100px;
  appearance: none;
  height: 5px;
  background: rgb(255, 196, 35);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.mixer-bars {
  display: flex;
  align-items: flex-end;
  height: 30px;
  flex: 1;
  gap: 4px;
  max-width: 180px; /* or 100% if you want full width */
  margin-left: 10px;
  margin-right: 10px;
}



/* Different delays for each bar */
.bar:nth-child(1) { --i: 1; }
.bar:nth-child(2) { --i: 2; }
.bar:nth-child(3) { --i: 3; }
.bar:nth-child(4) { --i: 4; }
.bar:nth-child(5) { --i: 5; }
.bar:nth-child(6) { --i: 6; }
.bar:nth-child(7) { --i: 7; }
.bar:nth-child(8) { --i: 8; }
.bar:nth-child(9) { --i: 9; }
.bar:nth-child(10) { --i: 10; }


@keyframes bounce {
  0%, 100% { height: 10px; }
  50% { height: 30px; }
}


/* ===================== */
/*     GANGS SIDEBAR     */
/* ===================== */
.gangs-sidebar {
  margin-top: 10px;
  width: 220px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  color: white;
  font-size: 14px;
}

.gangs-sidebar h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ff66cc;
  text-align: center;
}

.gang-entry {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  margin-bottom: 8px;
  border-left: 4px solid var(--gang-color);
  border-radius: 6px;
}

.gang-name {
  font-weight: bold;
  color: var(--gang-color);
}

.gang-entry small {
  display: block;
  font-size: 12px;
  color: #ccc;
}
.gangs-float {
  position: absolute;
  top: 70px;
  right: 30px;
  width: 260px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.gangs-float h4 {
  text-align: center;
  font-size: 16px;
  color: #ff66cc;
  margin-bottom: 12px;
}

.gang-entry {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 4px solid var(--gang-color);
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gang-name {
  font-weight: bold;
  color: var(--gang-color);
  font-size: 16px;
}

.gang-details {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}

.gang-entry:hover .gang-details {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.gang-details a {
  color: #00ccff;
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.gang-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gang-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  background: #000; /* fallback in case of transparent logos */
}

/* ===================== */
/*   MEET THE FOUNDERS   */
/* ===================== */
.founders-section {
  text-align: center;
  margin: 50px auto;
  color: rgb(122, 0, 192);
}

.founder-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.founder-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 0 10px rgb(255, 196, 35);
}

.founder-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}

.founder-card h3 {
  margin: 0 0 5px;
}

.founder-card p {
  margin: 3px 0;
  font-size: 14px;
  color: #ffcd28;
}

/* ===================== */
/*    STAFF MEMBERS    */
/* ===================== */
.staff-section {
  text-align: center;
  margin: 20px auto 50px; /* reduced top spacing */
  color: rgb(122, 0, 192);
}


.staff-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.staff-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 0 10px rgb(255, 196, 35);
}

.staff-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}

.staff-card h3 {
  margin: 0 0 5px;
}

.staff-card p {
  margin: 3px 0;
  font-size: 14px;
  color:  #ffcd28;
}
.staff-card {
  font-family: 'Rajdhani', sans-serif;
}

.staff-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgb(122, 0, 192);
  margin: 5px 0;
}

.staff-card .staff-role {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: #ffcd28;
  font-size: 14px;
}

.staff-card .staff-quote {
  font-style: italic;
  font-size: 12px;
  color: #ccc;
  opacity: 0.85;
}


/* ===================== */
/*    GANGS BELOW NAV    */
/* ===================== */
.gangs-section {
  margin: 30px auto;
  max-width: 300px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.gangs-section h4 {
  font-size: 18px;
  color: #ff66cc;
  margin-bottom: 15px;
}

.gang-entry {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  margin-bottom: 10px;
  border-left: 4px solid var(--gang-color);
  border-radius: 6px;
  text-align: left;
}

.gang-name {
  font-weight: bold;
  color: var(--gang-color);
}

.gang-entry small {
  display: block;
  font-size: 12px;
  color: #ccc;
}
.gangs-float {
  position: absolute;
  top: 70px; /* just below navbar */
  right: 30px;
  width: 240px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.gangs-float h4 {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
}

.gangs-float .gang-entry {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gang-color);
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: left;
}

.gangs-float .gang-name {
  font-weight: bold;
  color: var(--gang-color);
}

.gangs-float small {
  font-size: 12px;
  color: #ccc;
  display: block;
}

/*About Page Style*/



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* optional darkness */
  z-index: -1;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: rgba(0,0,0,0.6);
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

/* HOME*/

.home-btn {
  font-size: 16px;
}
.home-link:hover {
  text-decoration: underline;
}
.home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  gap: 8px;
}

.home-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.home-icon {
  width: 20px;
  height: 20px;
  filter: brightness(1000%) invert(1); /* Makes black icon turn white-ish */
}


/* Right section nav */
.side-nav {
  position: absolute;
  top: 80px;
  right: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 10px 20px;
}

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

.side-nav li {
  margin: 12px 0;
}

.side-nav a {
  color: #ff66cc;
  text-decoration: none;
  font-weight: 500;
}

.side-nav a:hover {
  text-decoration: underline;
}

/* Title */
.title {
  text-align: center;
  margin-top: 20%;
  font-size: 42px;
  text-shadow: 0 0 10px #000;
}

/* Footer logo circle */
.circle-logo {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.circle-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}

/* ===================== */
/*  DAY 1 PLAYERS FLOAT  */
/* ===================== */
.day1-float {
  position: absolute;
  top: 70px; /* adjust if needed */
  left: 30px;
  width: 240px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.day1-float h4 {
  text-align: center;
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 12px;
}

.day1-player {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #ffd700;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.day1-player h3 {
  font-size: 16px;
  margin: 0;
  color: #ffd700;
}

.day1-player p {
  margin: 5px 0;
  color: #ccc;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.social-links a {
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: scale(1.2);
}
.day1-player {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #ffd700;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.player-name {
  font-weight: bold;
  color: #ffd700;
  font-size: 16px;
}


.day1-player:hover .player-details {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.player-details a {
  color: #d0ff00;
  text-decoration: none;
}

.player-details a:hover {
  text-decoration: underline;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.day1-float {
  position: absolute;
  top: 70px;
  left: 30px;
  width: 260px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.day1-float h4 {
  text-align: center;
  font-size: 16px;
  color: #ffd700;
  margin-bottom: 12px;
}

.day1-player {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #ffd700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.player-name {
  font-weight: bold;
  color: #ffd700;
  font-size: 16px;
}

.player-details {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}

.day1-player:hover .player-details {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: brightness(0) invert(1);
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.2) saturate(2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.toggle-day1-btn {
  background-color: #ff66cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 30px;
  z-index: 3;
  position: relative;
}

.day1-float {
  position: absolute;
  top: 120px;
  left: 30px;
  width: 300px;
  max-height: 500px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 3;
}

.day1-float.hidden {
  display: none;
}

.day1-player {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #ffd700;
  border-radius: 6px;
}

.player-name {
  font-weight: bold;
  color: #ffd700;
  font-size: 16px;
}

.player-details {
  font-size: 13px;
  color: #ccc;
  margin-top: 6px;
  line-height: 1.5;
}
.toggle-day1-btn {
  background-color: #ff66cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin: 30px;
  z-index: 3;
  position: relative;
}

.day1-float {
  margin: 20px;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 3;
}

.day1-float.hidden {
  display: none;
}

.day1-player {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #61009a;
  border-radius: 6px;
}



.player-details {
  font-size: 13px;
  color: #ccc;
  margin-top: 6px;
  line-height: 1.5;
}
.day1-toggle {
  position: fixed;
  top: 70px;
  left: 30px;
  transition: left 0.3s ease;
  z-index: 10;
}
.sidebar.active ~ .day1-toggle {
  left: 280px; /* Moves right when sidebar is open */
}



.day1-toggle button {
  background: #000000;
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.day1-dropdown {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 15px;
  width: 240px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

rgb(122, 0, 192)

.day1-dropdown .player-name {
  font-weight: bold;
  color:rgb(122, 0, 192);
  font-size: 15px;
}

.day1-dropdown .player-details {
  font-size: 13px;
  color: #ccc;
  margin-top: 5px;
}



.hidden {
  display: none;
}
.founder-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto 30px;
  padding: 0 30px;
  max-width: 900px;
}

.left-link a,
.right-link a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(0,0,0,0.6);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.left-link a:hover,
.right-link a:hover {
  background-color: rgba(255,255,255,0.15);
}
