:root {
  --max-content-width: 2000px;
  --feature-height: calc(var(--max-content-width) / 2);
  --facade-base-color: linear-gradient(to bottom, #000, rgb(7, 6, 18));
  --facade-noise-opacity: 0.15;
  --mobile-breakpoint: 1280px;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --white-02: rgba(var(--white), 0.02);
  --white-05: rgba(var(--white), 0.05);
  --white-08: rgba(var(--white), 0.08);
  --white-10: rgba(var(--white), 0.1);
  --white-15: rgba(var(--white), 0.15);
  --white-20: rgba(var(--white), 0.2);
  --white-40: rgba(var(--white), 0.4);
  --white-70: rgba(var(--white), 0.7);
  --white-80: rgba(var(--white), 0.8);
  --black-00: rgba(var(--black), 0);
  --black-20: rgba(var(--black), 0.2);
  --black-80: rgba(var(--black), 0.8);
  --black-95: rgba(var(--black), 0.95);
  --scrollbar-width: 8px;
  --scrollbar-track: rgba(var(--white), 0.02);
  --scrollbar-thumb: rgba(var(--white), 0.1);
  --scrollbar-thumb-hover: rgba(var(--white), 0.2);
}

/* Global Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: "Libre Franklin", sans-serif;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  background: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,1) 70%, rgb(29 27 50));
  background-attachment: fixed;
}

/* Container Styles */
.container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 100px 20px 60px;
  @media screen and (min-width: 1280px) {
    padding-top: 210px;
  }
}

/* Grid Styles */
.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
  gap: 20px;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
}

@media screen and (max-width: 1280px) {
  .show-grid {
    grid-template-columns: 1fr !important;
    padding: 0;
  }
}

/* Card Styles */
.show-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio (9/16 * 100) */
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}

.show-card h2 {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-card p {
  font-size: 0.8rem;
  margin: 5px 0 0;
  opacity: 0.8;
}

/* Image Facade Styles */
.image-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-facade::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: var(--facade-noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
  pointer-events: none;
}

.image-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-facade img.loaded {
  opacity: 1;
}

/* Show Card Content Styles */
.show-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8) 0);
  transition: all 0.25s ease-in-out;
  height: 70px; /* Default height to show title and basic meta */
  opacity: 0;

}

/* Hover Animation */
.show-grid .show-card:hover .show-card-content {
  height: 75px;
  opacity: 1;
}

.show-grid .show-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--black), 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.show-grid .show-card:hover::after {
  background: rgba(var(--black), 0.2);
}

/* Feature Showcase Styles */
.feature-showcase {
  position: relative;
  width: 100%;
  margin-bottom: 4px;
  height: calc(var(--max-content-width) / 2);
  max-height: 50vw;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0,0,0,1), rgb(7, 6, 18));
}

@media screen and (max-width: 1280px) {
  .feature-showcase {
    display: none;
    border-radius: 24px;
  }
}

.feature-showcase .show-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: default;
}

.feature-showcase .show-card-content {
  display: none;
}

.feature-showcase .show-card.active {
  opacity: 1;
}

/* Modal Styles */
.modal {
  display: none ;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black), 0.75);
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  backdrop-filter: blur(6px);
  z-index: 2;
  -webkit-overflow-scrolling: touch; /* For iOS momentum scrolling */
  overscroll-behavior: contain; /* Prevent body scroll on bounce */
}

.modal.active {
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: #0a0a0a;
  margin: 210px auto 0;
  padding: clamp(105px, 4vw, 40px);
  width: min(90%, 1200px);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--white), 0.1);
  box-shadow: 0 20px 80px rgba(var(--black), 0.8);
  overflow-x: hidden;
  border-radius: 12px;
  padding-top: 30px;
  max-height: calc(100vh - 160px); /* Account for header space */
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

@media screen and (max-width: 1280px) {
  .modal-content {
    margin-top: 130px;
  }
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

/* Close Button Styles */
.close {
  position: absolute;
  right: clamp(15px, 4vw, 30px);
  top: clamp(15px, 4vw, 30px);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s ease;
  background: rgba(var(--black), 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid var(--white-10);
  z-index: 10;
}

.close:hover {
  color: #fff;
  background: rgba(var(--black), 0.6);
}

.close:active {
  transform: none;
}

@media screen and (max-width: 1280px) {
  .close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

/* Modal Text Styles */
.modal-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
  padding-right: 50px;
  line-height: 1.2;
}

.show-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 20px 0;
  color: #ccc;
}

/* Modal Meta Styles */
.modal-meta {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal-meta .year,
.modal-meta .network {
  color: rgba(var(--white), 0.8);
  font-weight: 500;
}

.modal-meta .separator {
  margin: 0 12px;
  width: 4px;
  height: 4px;
  background: rgba(var(--white), 0.2);
  border-radius: 50%;
}

/* Press Links Styles */
.press-links {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.press-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(var(--white), 0.1);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(var(--black), 0.2);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-top: auto;
  text-transform: none;
}

.press-link::after {
  content: '→';
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.press-link:hover {
  background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
  border-color: rgba(var(--white), 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--black), 0.8);
}

.press-link:hover::after {
  transform: translateX(3px);
}

/* Media Container Styles */
.media-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.media-container img,
.media-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Styles */
@media screen and (max-width: 1280px) {
  .show-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-showcase .show-card {
    cursor: pointer;
  }
}

@media screen and (max-width: 1280px) {
  .modal-content {
    padding: 20px;
    width: calc(100% - 20px);
    min-height: 100vh; /* Full height on mobile */
    max-height: none; /* Remove height limit on mobile */
  }

  .modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .modal-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .press-links {
    margin-top: 25px;
    gap: 10px;
  }

  .press-link {
    padding: 10px 20px;
    width: 100%; /* Full width buttons on mobile */
  }

  .close {
    right: 15px;
    top: 15px;
    font-size: 24px;
  }

  .modal-meta {
    margin: 15px 0 20px;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 1280px) {
  .modal-content {
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

/* Body Modal Open Styles */
body.modal-open {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Force scrollbar to always be visible and styled */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html::-webkit-scrollbar {
  width: var(--scrollbar-width);
}

html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: calc(var(--scrollbar-width) / 2);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

/* Then apply to modal content */
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.show-card-meta {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 5px;
}

.show-card-meta .year,
.show-card-meta .network {
  color: rgba(var(--white), 0.8);
  font-weight: 500;
}

.show-card-meta .separator {
  margin: 0 8px;
  width: 3px;
  height: 3px;
  background: rgba(var(--white), 0.4);
  border-radius: 50%;
}

.hero-text-wrap {
  width: 100%;
}
.hero-text {
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -.05rem;
  line-height: 1.15;
  text-align: center;
  padding: 60px 10px;
  font-weight: 900;
  width: 100%;
  margin: 0 auto;
  background-position: center;
}

@media screen and (max-width: 1280px) {
  .hero-text {
    padding: 50px 20px 60px;
  }
}

.hero-text-highlight {
  display: inline;
}

@media screen and (max-width: 1280px) {
  .hero-text-highlight {
    display: inline;
  }
}

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

@media screen and (max-width: 1280px) {
  .logo-wrap {
    top: 15px;
    left: 10px;
    max-width: 200px;
    width: 200px;
  }
}

.logo-svg {
  filter: drop-shadow(5px 5px 5px rgb(0 0 0));
}

#logo {
  display: block;
  margin: 40px auto 0;
  padding: 20px 50px 0;
  width: 100%;
  max-width: 420px; /* Adjust size for a smaller square */
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  @media screen and (max-width: 1280px) {
    margin-top: 25px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center; /* Center the logo */
  padding: 30px 0; /* Add padding for spacing */
  background: linear-gradient(to top, rgba(var(--black), 0), rgb(29 27 50) 100%);
  z-index: 3;
}

@media screen and (max-width: 1280px) {
  header {
    padding: 0;
    height: 130px;
  }
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-content-width);
  margin: 0 auto;
  width: 100%;  
  padding: 0 max(20px, env(safe-area-inset-left));
}

@media screen and (max-width: 1280px) {
  .header-wrap {
    position: absolute;
  }
}

.c-header-nav-bar__link {
  font: 700 20px / 1 "Libre Franklin", arial, sans-serif;
  letter-spacing: 0;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  position: relative;
  text-decoration: none;
  color: white;
  transition: color 0.2s ease;
}

/* Add hover effect with underline animation */
.c-header-nav-bar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right;
}

.c-header-nav-bar__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.c-header-nav-bar__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Disable hover effect for mobile */
@media screen and (max-width: 1280px) {
  .c-header-nav-bar__link::after {
    display: none;
  }
}

.o-header-nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.c-header-nav-bar {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.c-header-nav-bar .separator {
  margin: 0 8px;
  width: 4px;
  height: 4px;
  background: rgba(var(--white), 0.4);
  border-radius: 50%;
  align-self: center;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 15px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu-wrap {
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1;
  }

  .o-header-nav-bar {
    display: none;  /* Hide by default on mobile */
  }

  .o-header-nav-bar.active {
    display: block;  /* Show when active */
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: rgba(var(--black), 0.95);
    margin: 0;
    padding: 80px 20px 20px;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(10px);
  }

  .c-header-nav-bar__item {
    margin: 10px 0;
  }

  /* Hamburger animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

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

.menu-header {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-description {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.menu-media {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.menu-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.menu-list {
  background: rgba(var(--white), 0.05);
  padding: 2rem;
  border-radius: 8px;
}

.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items li {
  padding: 1rem;
  border-bottom: 1px solid rgba(var(--white), 0.1);
  color: #fff;
}

.menu-items li:last-child {
  border-bottom: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  padding: 20px;
  width: 100%;
  gap: 20px;
}

.team-member {
  text-align: center;
}

.team-member p {
  margin: 0;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.team-member:hover img {
  filter: grayscale(0);
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.team-member-title {
  font-size: 0.9rem;
  color: rgba(var(--white), 0.7);
  margin: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.news-item {
  background: rgba(var(--white), 0.05);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news-thumb {
  width: 100%;
  height: 320px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 16px rgba(var(--black), 0.2);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(var(--white), 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-item:hover {
  background: rgba(var(--white), 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(var(--black), 0.2);
}

.news-item:hover::after {
  opacity: 1;
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.news-title {
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.news-item:hover .news-title {
  color: #fff;
}

.news-site {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(var(--white), 0.7);
  font-weight: 600;
  margin-top: -0.2rem;
}

.news-excerpt {
  color: rgba(var(--white), 0.8);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  background: rgba(var(--white), 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.news-link:hover {
  background: rgba(var(--white), 0.2);
  transform: translateX(2px);
}

/* Responsive adjustments */
@media screen and (max-width: 1280px) {
  .news-item {
    flex-direction: column;
    gap: 1rem;
  }

  .news-thumb {
    flex: 0 0 auto;
    width: 100%;
    height: 160px;
  }
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.podcast-item {
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.podcast-item:hover {
  background: rgba(var(--white), 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(var(--black), 0.2);
}

.podcast-cover {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(var(--black), 0.2);
}

.podcast-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.podcast-item:hover .podcast-cover img {
  transform: scale(1.05);
}

.podcast-title,
h2.podcast-title {
  font-size: 30px;
  margin: 0.5rem 0 0.25rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  font-weight: 600;
}

.podcast-description {
  color: rgba(var(--white), 0.8);
  margin: 0 0 0.75rem;
  line-height: 1.4;
  font-size: 0.875rem;
  max-height: 5.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.contact-content {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 2rem;
}

.contact-section {
  background: rgba(var(--white), 0.05);
  padding: clamp(20px, 4vw, 3rem);
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(var(--white), 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  min-width: 300px;
}

.email-display {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  background: rgba(var(--black), 0.2);
  border-radius: 4px;
  user-select: all;
}

.email-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.email-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--white), 0.15);
  border: none;
  border-radius: 4px;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-button:hover {
  background: rgba(var(--white), 0.2);
  transform: translateY(-1px);
}

.email-button:active {
  transform: translateY(0);
}

.email-button.copied {
  background: #2ecc71;
}

.email-button svg {
  opacity: 0.8;
}

@media screen and (max-width: 1280px) {
  .email-container {
    width: 100%;
    max-width: 100%;
  }
  
  .email-display {
    font-size: 1rem;
    word-break: break-all;
  }
  
  .email-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .email-button {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 1280px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
  }

  .o-header-nav-bar {
    display: none;  /* Hide by default on mobile */
  }

  .o-header-nav-bar.active {
    display: block;  /* Show when active */
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: var(--black-95);
    margin: 0;
    padding: 80px 20px 20px;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(10px);
  }

  .c-header-nav-bar__item {
    margin: 10px 0;
  }

}

.card {
  background: rgba(var(--white), 0.02);  /* Instead of var(--white-02) */
  border: 1px solid rgba(var(--white), 0.1);  /* Instead of var(--white-10) */
}

.news-list,
.podcast-grid {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 20px;
}

.news-item,
.podcast-item {
  width: 100%;
  max-width: 100%;
}

.footer {
  background: linear-gradient(to bottom, rgba(var(--black), 0.5), rgb(7, 6, 18));
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(var(--white), 0.1);
}

.footer-wrap {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  color: rgba(var(--white), 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

@media screen and (max-width: 1280px) {
  .footer {
    padding: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .c-header-nav-bar__link {
    padding: 16px 20px;
    font-size: 18px;
  }
  
  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 4px 0;
  }
  
  .o-header-nav-bar.active {
    padding-top: 20px;
  }
  
  .c-header-nav-bar__item {
    margin: 8px 0;
    width: 100%;
  }
  
  .c-header-nav-bar__link {
    width: 100%;
    padding: 16px;
  }
}

.listen-button {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(var(--white), 0.1);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(var(--black), 0.2);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-top: auto;
  text-transform: none;
}

.listen-button::after {
  content: '→';
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.listen-button:hover {
  background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
  border-color: rgba(var(--white), 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--black), 0.8);
}

.listen-button:hover::after {
  transform: translateX(3px);
}

.podcast-description {
  color: rgba(var(--white), 0.8);
  margin: 1rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
  /* Better height control */
  max-height: 6.4em; /* 4 lines (1.6 * 4) */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.podcast-item {
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.separator {
  display: none;
}

@media (min-width: 1280px) {
  .separator {
    display: block;
  }
}

.frosted-glass {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 25px;
  /* Use transform to create GPU acceleration */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* Ensure proper rendering in Safari */
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Add fallback for browsers that don't support backdrop-filter */
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .frosted-glass {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* Update existing logo styles */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Force hardware acceleration */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Prevent Safari rendering issues */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* Ensure proper z-indexing in Safari */
  isolation: isolate;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  .frosted-glass {
    padding: 12px 20px;
    border-radius: 8px;
  }
  
  .header-logo {
    margin-top: 25px;
  }
}

p + p {
  margin-top: 1rem;
}

