* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0D0D0D;
  color: #ffffff;
  padding: 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F5C518;
}

nav a {
  color: #ffffff;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
}

.banner {
  margin: 1.5rem 0;
  background-color: #1A1A1A;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: #F5C518;
  font-weight: 600;
}

.hero {
  text-align: center;
  margin-top: 4rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero p {
  margin-top: 1rem;
  color: #B0B0B0;
  font-size: 1rem;
}

.hero button {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: #F5C518;
  color: #0D0D0D;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 3rem;
  gap: 1.5rem;
}

.card {
  background-color: #1A1A1A;
  padding: 1.5rem;
  border-radius: 12px;
  width: 300px;
  text-align: center;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card p {
  color: #B0B0B0;
  font-size: 0.95rem;
}

footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}
.influ1 {
  background-color: #1A1A1A;
  padding: 1.5rem;
  border-radius: 12px;
  width: 500px;
  text-align: center;
}
#home1 {
  text-align: right;
  text-decoration: none;
}
#influ1 {
  text-decoration: none;
}
#team90 {
  text-decoration: none;
}
.team-box-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  background-color: #0D0D0D;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.team-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #F5C518;
}

.team-option-box {
  background: #1A1A1A;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 30px 20px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.team-option-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-option-box h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.team-option-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.team-btn {
  background-color: #F5C518;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.team-btn:hover {
  background-color: #444;
}
:root {
  --influmo-lightgold: #f5c518;
  --influmo-gold: #e68800;

  --glow-spread: 0 0 20px;
}
.hero h1 {
  color: #fff;
 
}

.hero p {
  color: #ccc;
  text-shadow: 0 0 8px var(--influmo-lightgold);
}
.hero button {
  background-color: var(--influmo-lightgold);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero button:hover {
  box-shadow:
    0 0 20px var(--influmo-lightgold),
    0 0 40px var(--influmo-gold);
  transform: scale(1.05);
}
.card {
  background: #121212;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 5px rgba(255,255,255,0.1);
}
.card:hover {
  box-shadow:
    0 0 10px var(--influmo-gold),
    0 0 20px var(--influmo-lightgold);
}

header, footer {
  background-color: #0D0D0D;
  color: white;
  padding: 10px 20px;
  text-align: center;
}
.banner {
  background-color: #1a1a1a;
  color: #F5C518;
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  box-shadow:
    0 0 8px var(--influmo-lightgold),
    inset 0 0 10px var(--influmo-gold);
}
.team-option-box {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin: 1.5rem auto;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 0 transparent;
  transition: all 0.4s ease;
  border: 1px solid #333;
  position: relative;
  z-index: 1;
}

.team-option-box:hover {
  box-shadow: 0 0 15px 5px #f5c518, 
              0 0 40px 10px #e68800;
  background: #1a1a1a;
  transform: scale(1.02);
}
.team-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  background-color: #111;
}
.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}
.team-option-box {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 700px;
  text-align: center;
  color: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.team-option-box:hover {
  box-shadow: 0 0 20px 4px rgba(255, 200, 0, 0.4);
  transform: translateY(-4px);
  border: 1px solid rgba(255, 200, 0, 0.6);
}
.team-option-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.team-option-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}
.team-btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.team-btn:hover {
  box-shadow: 0 0 10px 3px rgba(255, 200, 0, 0.8);
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c1c;
  padding: 1rem 2rem;
  box-shadow: 0 0 10px rgba(255, 200, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #333;
}
header .logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffcc00;
  text-transform: uppercase;
}
header nav {
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header nav a:hover {
  background-color: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
}
.byot-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}

.byot-title {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.byot-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 3rem;
}

.role-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.role-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px transparent;
}

.role-card:hover {
  box-shadow: 0 0 20px gold;
  transform: translateY(-5px);
}

.role-card h2 {
  color: gold;
  margin-bottom: 0.5rem;
}

.role-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.select-btn {
  background: gold;
  color: #111;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.select-btn:hover {
  background: #ffcc00;
}

.continue-btn {
  margin-top: 3rem;
  background: #111;
  border: 2px solid gold;
  color: gold;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
}

.continue-btn:hover {
  background: gold;
  color: #111;
}
/* ==== Collab Navbar ==== */
.collab-nav {
  background-color: #0d0d0d;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
}

.collab-nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #ffd700;
  letter-spacing: 1px;
}

.collab-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.collab-nav ul li a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.collab-nav ul li a:hover {
  color: #ffd700;
}
#teamf01 {
text-decoration: none;
}
#collab10 {
  text-decoration: none;
}
.brand {
  color: #f5c518;
}
/* Master Navigation Bar Styling */

.influmo-navbar {
  background-color: #121212;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00FFD1;
  text-decoration: none;
}

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

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

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

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    background-color: #121212;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    display: none;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}
a {
  text-decoration: none;
}