:root {
  --primary-color: #00E5E8; /* Couleur turquoise qui apparaît dans les boutons */
  --background-dark: #04121B; /* Fond sombre général */
  --background-darker: #06171A; /* Version légèrement plus foncée pour certaines sections */
  --text-light: #E1FFFF; /* Texte clair principal */
  --text-white: #FFFFFF; /* Texte blanc pur */
  --button-hover: #06171A; /* Couleur de survol des boutons */
  --secondary-color: #19344B; /* Couleur secondaire pour certains éléments */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
  background-color: var(--background-dark);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--text-light);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.home-banner .container {
  max-width: 100%;
  padding: 0 30px;
}

/* Header & Navigation */
.site-header {
  background-color: #051016;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 50px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.logo {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
}

.header-button {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-header {
  background-color: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-header i {
  font-size: 1rem;
}

.btn-header:hover {
  background-color: #00c5c8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 229, 232, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.btn-primary:hover {
  background-color: var(--button-hover);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--background-dark);
  color: var(--text-light);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* StarterPacks Page Styles */
.starterpacks-hero {
  padding: 3rem 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.starterpacks-hero h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* StarterPacks Static Page Styles */
.starterpacks-static-hero {
  padding: 3rem 0;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.starterpacks-static-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.starterpacks-static-hero .highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.starterpacks-static-hero .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.starterpacks-static-hero .accent {
  color: var(--primary-color);
  font-weight: 600;
}

.starterpacks-hero .graduation-cap {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.starterpacks-hero .highlight {
  color: #00E5E8;
  font-weight: 700;
}

.starterpacks-hero .subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.starterpacks-hero .accent {
  color: #00E5E8;
  font-weight: 600;
}

.starterpacks-info-box {
  background-color: rgba(4, 28, 35, 0.7);
  border-radius: 10px;
  padding: 2rem;
  margin: 0 auto 3rem;
  max-width: 800px;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.starterpacks-image {
  flex: 0 0 35%;
}

.starterpacks-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.starterpacks-details {
  flex: 1;
}

.coming-soon {
  color: #00E5E8;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.double-arrow {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.emoji {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.community-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.community-text {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.community-button {
  display: inline-block;
  background-color: #00E5E8;
  color: var(--background-dark);
  padding: 1rem 2rem;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 2rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.community-button:hover {
  background-color: #00c5c8;
}

.community-button .icon {
  margin-right: 0.5rem;
}

.discord-invite {
  font-size: 1rem;
  opacity: 0.9;
}

/* Home Banner Section */
.home-banner {
  background-image: url('../images/home-banner.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 3em;
}

.home-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 27, 0.5);
  z-index: 1;
}

.home-banner .container {
  position: relative;
  z-index: 2;
}

.home-banner-title {
  text-align: center;
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.experts-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  background: rgb(4, 18, 27);
  border-radius: 10px 10px 0 0;
  height: 260px;
}

.expert-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-width: 0; /* Permet la réduction des cartes */
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(4, 18, 27, 0.3), rgba(4, 18, 27, 0.85));
  z-index: 1;
}

.expert-image {
  width: 100%;
}

.expert-info {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 100%;
  padding: 1.5rem;
  color: var(--text-white);
  transform: translateY(0);
  transition: transform 0.3s ease;
  text-align: center;
  z-index: 2;
}

.expert-card:hover .expert-info {
  transform: translateY(-10px);
}

.expert-name {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}

.expert-title {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.expert-stats {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.expert-stats p {
  margin: 0.3rem 0;
}

.expert-stats strong {
  color: var(--primary-color);
}

.btn-expert {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--background-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.btn-expert:hover {
  opacity: 0.85;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* Experts Section */
.experts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.expert {
  background-color: var(--background-darker);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  width: 250px;
}

.expert h3 {
  margin-bottom: 0.5rem;
}

.expert p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.expert .btn {
  margin-top: 1rem;
}

/* Podcast Discovery Section */
.podcast-discovery {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), rgb(25, 52, 75);
  padding: 4rem 0;
}

.podcast-discovery .container {
  max-width: 1200px;
}

/* Styles par défaut (sera override par media queries) */
.podcast-discovery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* Desktop Layout spécifique */
@media (min-width: 768px) {
  .podcast-discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 2rem 3rem;
    align-items: start;
    padding: 0 100px;
    margin-top: 60px; /* Alignement avec latest-podcast */
    grid-template-areas: 
      "title title"
      "description image"
      "button .";
  }

  .podcast-discovery-description {
    grid-area: description;
    text-align: left;
    align-self: center;
  }

  .podcast-discovery-title {
    grid-area: title;
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .podcast-thumbnails {
    grid-area: image;
    width: 100%;
    max-width: 500px;
    position: relative;
    justify-self: center;
    align-self: center;
  }

  .podcast-discovery-button {
    grid-area: button;
    text-align: left;
  }
}

.podcast-discovery-title .highlight {
  color: var(--primary-color);
}

.podcast-discovery-description p {
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.podcast-thumbnails-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--background-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-discover i {
  margin-left: 10px;
  font-size: 0.8rem;
}

.btn-discover:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 232, 0.3);
}

/* Latest Podcast Section */
.latest-podcast {
  padding: 5rem 0;
  background-color: var(--background-darker);
}

.latest-podcast-header {
  margin-bottom: 3rem;
}

.latest-podcast-label {
  display: inline-block;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.latest-podcast-label span {
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.latest-podcast-label i {
  margin-left: 10px;
  color: var(--primary-color);
}

.latest-podcast-title {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.latest-podcast-title .highlight {
  color: var(--primary-color);
}

/* Styles par défaut pour latest-podcast */
.latest-podcast-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* Desktop Layout spécifique pour latest-podcast */
@media (min-width: 768px) {
  .latest-podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 2rem 3rem;
    align-items: start;
    padding: 0 100px;
    grid-template-areas: 
      "label ."
      "title ."
      "text image"
      "button .";
  }

  .latest-podcast-label {
    grid-area: label;
    margin-top: 60px;
    text-align: left;
  }

  .latest-podcast-title {
    grid-area: title;
    text-align: left;
  }

  .latest-podcast-text {
    grid-area: text;
    align-self: center;
    text-align: left;
  }

  .latest-podcast-button {
    grid-area: button;
    text-align: left;
  }

  .latest-podcast-thumbnail {
    grid-area: image;
    align-self: center;
  }
}

.latest-podcast-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.latest-podcast-button {
  margin-top: 1rem;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--background-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.btn-watch i {
  margin-left: 10px;
  font-size: 1rem;
}

.btn-watch:hover {
  opacity: 0.9;
}

.latest-podcast-thumbnail {
  width: 100%;
  max-width: 500px;
  position: relative;
  justify-self: center;
}

.latest-podcast-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .podcast-layout {
    flex-direction: column;
  }
  
  .podcast-content {
    text-align: center;
  }
}

.podcast-section h2 {
  color: var(--primary-color);
}

.podcast-section p {
  margin-bottom: 1.5rem;
}

/* Why Join Section */
.why-join {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), rgb(25, 52, 75);
  padding: 4rem 0;
  text-align: center;
}

.why-join-title {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.why-join-title .highlight {
  color: var(--primary-color);
}

.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding: 1rem;
}

.benefit-icon {
  flex: 0 0 60px;
  font-size: 4rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Partners Section */
.partners {
  padding: 4rem 0;
  text-align: center;
}

.partner {
  margin-bottom: 2rem;
}

.partner img {
  height: 60px;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--background-dark);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--button-hover);
  color: var(--primary-color);
}

.tagline {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: var(--background-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* LIO Page Styles */
.lio-hero {
  padding: 4rem 0;
  background-color: var(--background-dark);
}

.lio-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.lio-info {
  flex: 1;
  min-width: 300px;
}

.lio-tag {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.lio-name {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  text-align: left;
  color: var(--text-white);
  font-weight: 900;
}

.lio-title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.lio-info p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.lio-quote {
  margin-top: 1rem;
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
}

.lio-image {
  flex: 1;
  min-width: 300px;
}

.lio-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Allkeyshop Showcase Section */
.allkeyshop-showcase {
  padding: 4rem 0;
  background-color: var(--background-darker);
}

.showcase-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.showcase-image {
  flex: 1;
  min-width: 300px;
}

.showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.showcase-info {
  flex: 1;
  min-width: 300px;
}

.showcase-title {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brand-name {
  color: var(--primary-color);
  font-size: 2.5rem;
  display: block;
  margin-top: 0.5rem;
}

.showcase-info p {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.showcase-info .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-info .btn i {
  transition: transform 0.3s ease;
}

.showcase-info .btn:hover i {
  transform: translateX(5px);
}

/* Reward Program Section */
.reward-program {
  padding: 4rem 0;
  background-color: var(--background-dark);
}

.reward-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.reward-info {
  flex: 1;
  min-width: 300px;
}

.reward-title {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight-text {
  color: var(--primary-color);
  font-size: 2.5rem;
  display: block;
  margin-top: 0.5rem;
}

.reward-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.jackpot-info {
  margin-top: 1.5rem;
  font-weight: 600;
}

.btn-rounded {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.reward-image {
  flex: 1;
  min-width: 300px;
}

.reward-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Extension Showcase Section */
.extension-showcase {
  padding: 4rem 0;
  background-color: var(--background-darker);
}

.extension-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.extension-image {
  flex: 1;
  min-width: 300px;
}

.extension-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.extension-info {
  flex: 1;
  min-width: 300px;
}

.extension-title {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.extension-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.extension-cta {
  font-weight: 600;
  margin-top: 1.5rem;
}

/* Formations Showcase Section */
.formations-showcase {
  padding: 4rem 0;
  background-color: var(--background-dark);
}

.formations-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.formations-image {
  flex: 1;
  min-width: 300px;
}

.formations-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.formations-info {
  flex: 1;
  min-width: 300px;
}

.formations-title {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.formations-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.formations-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Yeger Page Styles */
.yeger-hero {
  padding: 4rem 0;
  background-color: var(--background-dark);
}

.yeger-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.yeger-info {
  flex: 1;
  min-width: 300px;
}

.yeger-tag {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.yeger-name {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  text-align: left;
  color: var(--text-white);
  font-weight: 900;
}

.yeger-title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.yeger-info p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.yeger-quote {
  margin-top: 1rem;
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
}

.yeger-image {
  flex: 1;
  min-width: 300px;
}

.yeger-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Yaskow Showcase Section */
.yaskow-showcase {
  padding: 4rem 0;
  background-color: var(--background-darker);
}

.coach-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.coach-image {
  flex: 1;
  min-width: 300px;
}

.coach-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.coach-info {
  flex: 1;
  min-width: 300px;
}

.coach-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brand-name {
  color: var(--primary-color);
  font-size: 2.5rem;
  display: block;
  margin-top: 0.5rem;
}

.coach-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.coach-cta {
  margin-top: 2rem;
}

.coach-cta p {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Den Page Styles */
.den-hero {
  padding: 4rem 0;
  background-color: var(--background-dark);
}

.den-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.den-info {
  flex: 1;
  min-width: 300px;
}

.den-tag {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.den-name {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  text-align: left;
  color: var(--text-white);
  font-weight: 900;
}

.den-title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.den-info p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.den-quote {
  margin-top: 1rem;
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
}

.den-image {
  flex: 1;
  min-width: 300px;
}

.den-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* War Legend Showcase Section */
.warlegend-showcase {
  padding: 4rem 0;
  background-color: var(--background-darker);
}

.warlegend-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.warlegend-image {
  flex: 1;
  min-width: 300px;
}

.warlegend-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.warlegend-info {
  flex: 1;
  min-width: 300px;
}

.warlegend-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.warlegend-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.warlegend-cta {
  margin-top: 2rem;
}

.warlegend-cta p {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Grimtag Page Styles */
.grimtag-hero {
  padding: 4rem 0;
  background-color: var(--background-dark);
}

.grimtag-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.grimtag-info {
  flex: 1;
  min-width: 300px;
}

.grimtag-tag {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.grimtag-name {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  text-align: left;
  color: var(--text-white);
  font-weight: 900;
}

.grimtag-title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.grimtag-info p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.grimtag-image {
  flex: 1;
  min-width: 300px;
}

.grimtag-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* SEO Showcase Section */
.seo-showcase {
  padding: 4rem 0;
  background-color: var(--background-darker);
}

.seo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.seo-image {
  flex: 1;
  min-width: 300px;
}

.seo-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.seo-info {
  flex: 1;
  min-width: 300px;
}

.seo-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.seo-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.seo-cta {
  margin-top: 2rem;
}

.seo-info .brand-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.2;
  margin-top: 0.5rem;
  display: block;
}

/* Podcasts Page Styles */
.podcasts-header {
  padding: 3rem 0 1rem;
  text-align: center;
  background-color: var(--background-dark);
}

.podcasts-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.podcasts-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.link-highlight {
  color: var(--primary-color);
  text-decoration: none;
}

.podcasts-grid {
  padding: 2rem 0 4rem;
  background-color: var(--background-dark);
  width: 100%;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

.podcasts-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.podcasts-grid-container.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  height: 260px;
}

.podcast-card {
  grid-column: span 4;
  margin-bottom: 1.5rem;
  background-color: var(--background-darker);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.podcast-image {
  position: relative;
  padding: 20px;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.podcast-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.podcast-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.podcast-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.btn-secondary {
  background-color: var(--background-darker);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.guest-tag {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.guest-tag span,
.guest-name span {
  font-size: 0.7rem;
  font-weight: 400;
}

.guest-tags {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.test-tag,
.curious-tag,
.gameplay-tag,
.tilt-tag,
.drama-tag,
.haters-tag {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: center;
}

.guest-name {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .podcast-card {
    grid-column: span 6;
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.partners-section {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 40px;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.partner img {
  max-width: 120px;
  height: auto;
  flex-shrink: 0;
}

.partner p {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}

.partner-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.partner-link:hover {
  color: #00c5c8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--background-dark);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  margin: 3rem auto 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
  transition: all 0.3s ease;
  max-width: fit-content;
}

.cta-button:hover {
  background-color: #00c5c8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 232, 0.3);
}

.tagline {
  text-align: center;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1.5rem;
}

.footer-logo {
  display: block;
  text-align: center;
  margin: 0;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.copyright p {
  margin: 0.2rem 0;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
}

.social-links a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00c5c8;
  transform: translateY(-2px);
}

/* Menu burger styles - moved to mobile.css */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu-overlay {
    display: none;
  }
}

/* Responsive Breakpoints - Desktop and Tablet Only */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .header-content {
    max-width: 1400px;
  }
  
  .home-banner-title {
    font-size: 3.5rem;
  }
  
  .experts-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    height: 280px;
    background: transparent;
  }
  
  .expert-card {
    display: flex;
    align-items: center;
    background: rgb(4, 18, 27);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
  }
  
  .expert-card::before {
    display: none;
  }
  
  .expert-image {
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
  }
  
  .expert-info {
    position: static;
    padding: 1.5rem;
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-white);
    text-align: left;
    transform: none;
    z-index: 1;
  }
  
  .expert-card:hover .expert-info {
    transform: none;
  }
}

/* Desktop (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .header-content {
    padding: 0 30px;
  }
  
  .home-banner-title {
    font-size: 3rem;
  }
  
  .experts-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    height: 280px;
    background: transparent;
  }
  
  .expert-card {
    flex: 1;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: rgb(4, 18, 27);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
  }
  
  .expert-card::before {
    display: none;
  }
  
  .expert-image {
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
  }
  
  .expert-info {
    position: static;
    padding: 1.5rem;
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-white);
    text-align: left;
    transform: none;
    z-index: 1;
  }
  
  .expert-card:hover .expert-info {
    transform: none;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .header-content {
    padding: 0 20px;
  }
  
  .nav-links {
    gap: 30px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .home-banner-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  .experts-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    height: auto;
    min-height: 200px;
  }
  
  .expert-card {
    flex: 1;
    min-height: 200px;
    max-width: none;
  }
  
  .expert-info {
    padding: 1rem;
  }
  
  .expert-name {
    font-size: 1.1rem;
  }
  
  .expert-title {
    font-size: 0.75rem;
  }
  
  .expert-stats {
    font-size: 0.7rem;
  }
  
  .btn-expert {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .podcast-discovery-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .latest-podcast-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .benefits-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .benefit-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .benefit-item {
    max-width: 100%;
  }
  
  .partners-section {
    padding: 0 20px;
  }
  
  .partner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

/* Cache bust 06/18/2025 23:29:24 */
