* {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Roboto', 'Rubik', sans-serif;
  background-image: url('../images/bck.png');
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  color: #f5f5f5;
}
body.page {
    background-image: none;
    background-color: #000;
}

/* Main layout */
main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero section - index.html version */
section.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
section.hero img {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
}

/* Hero header - epk.html version */
header.hero {
  width: 100%;
  height: 300px;
  max-height: 300px;
  display: flex;
  align-items: top;
  justify-content: left;
  padding: 1rem 1.5rem;
  overflow: hidden;
  background-image: url('../images/bck.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
header.hero img {
  max-width: 600px;
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
}

/* Bio header section */
.bio-header {
  width: 100%;
  background: linear-gradient(135deg, #5bbad5 0%, #31859d 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(91, 186, 213, 0.3);
}
.bio-header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
  font-family: 'Rubik', sans-serif;
}

/* Bio content section */
.bio-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  padding: 4rem 1.5rem;
}
.bio-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.bio-wrapper p {
  margin: 0 0 1.75rem;
  color: #d1d1d1;
  line-height: 1.8;
  font-size: 1.0625rem;
  font-family: 'Roboto', sans-serif;
}
.bio-wrapper p:last-child {
  margin-bottom: 0;
}

/* YouTube header section */
.youtube-header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(91, 186, 213, 0.2);
  border-bottom: 1px solid rgba(91, 186, 213, 0.2);
}
.youtube-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  font-family: 'Rubik', sans-serif;
}
.youtube-header a {
  color: #5bbad5;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease, transform 0.2s ease;
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.youtube-header a:hover,
.youtube-header a:focus {
  color: #9be3f4;
  border-bottom-color: #5bbad5;
  transform: translateX(2px);
  outline: none;
}

/* YouTube grid section */
.youtube-grid-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  padding: 0rem;
}
.youtube-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0rem;
}
/* First 9 cards (3 rows x 3 columns): each card spans 4 columns */
.youtube-card:nth-child(n+1):nth-child(-n+9) {
  grid-column: span 4;
}
/* Last 4 cards (1 row x 4 columns): each card spans 3 columns */
.youtube-card:nth-child(n+10):nth-child(-n+13) {
  grid-column: span 3;
}
.youtube-card {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  /*cursor: pointer;*/
  /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);*/
  /*transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;*/
}
.card-content {
  width: 100%;
  height: 100%;
  position: relative;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.youtube-card:hover .card-content {
  opacity: 0.95;
}

/* Metric styles */
.metric-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  text-align: right;
}
.metric-value {
  font-family: 'Rubik', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  text-align: center;
}

/* Countries list styles */
.countries-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
}
.country-item {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* Chart canvas styles */
.card-content canvas {
  max-width: 100%;
  width: 100% !important;
  height: 200px !important;
  margin-top: 0.5rem;
}
/* Pie chart specific styles */
#genderChart,
#ageChart,
#spotifyGenderChart,
#spotifyAgeChart,
#tiktokAgeChart {
  height: auto !important;
  max-height: auto !important;
}

/* Card color gradients */
.youtube-card.card-1 {
  background: linear-gradient(135deg, #5bbad5 0%, #31859d 50%, #1a5a6f 100%);
}
.youtube-card.card-2 {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6d28d9 100%);
}
.youtube-card.card-3 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}
.youtube-card.card-4 {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}
.youtube-card.card-5 {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
}
.youtube-card.card-6 {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.youtube-card.card-7 {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 50%, #a16207 100%);
}
.youtube-card.card-8 {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%);
}
.youtube-card.card-9 {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
}
.youtube-card.card-10 {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
}
.youtube-card.card-11 {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 50%, #4d7c0f 100%);
}
.youtube-card.card-12 {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}
.youtube-card.card-13 {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
}

/* Duration value style */
.duration-value {
  font-size: 4.5rem;
}

/* Spotify header section */
.spotify-header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(30, 215, 96, 0.2);
  border-bottom: 1px solid rgba(30, 215, 96, 0.2);
}
.spotify-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  font-family: 'Rubik', sans-serif;
}
.spotify-header a {
  color: #1db954;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease, transform 0.2s ease;
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.spotify-header a:hover,
.spotify-header a:focus {
  color: #1ed760;
  border-bottom-color: #1db954;
  transform: translateX(2px);
  outline: none;
}

/* Spotify grid section */
.spotify-grid-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  padding: 0rem;
}
.spotify-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0rem;
}
/* First 6 cards (2 rows x 3 columns): each card spans 4 columns */
.spotify-card:nth-child(n+1):nth-child(-n+6) {
  grid-column: span 4;
}
/* Last 3 cards (1 row x 3 columns): each card spans 4 columns */
.spotify-card:nth-child(n+7):nth-child(-n+9) {
  grid-column: span 4;
}
.spotify-card {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.spotify-card:hover .card-content {
  opacity: 0.95;
}

/* Spotify card color gradients - using green/teal palette */
.spotify-card.card-s1 {
  background: linear-gradient(135deg, #1db954 0%, #1aa34a 50%, #168d40 100%);
}
.spotify-card.card-s2 {
  background: linear-gradient(135deg, #1ed760 0%, #1db954 50%, #1aa34a 100%);
}
.spotify-card.card-s3 {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 50%, #009d7e 100%);
}
.spotify-card.card-s4 {
  background: linear-gradient(135deg, #00b894 0%, #00a085 50%, #008876 100%);
}
.spotify-card.card-s5 {
  background: linear-gradient(135deg, #00cec9 0%, #00b8b3 50%, #00a29d 100%);
}
.spotify-card.card-s6 {
  background: linear-gradient(135deg, #55efc4 0%, #00b894 50%, #00a085 100%);
}
.spotify-card.card-s7 {
  background: linear-gradient(135deg, #81ecec 0%, #00cec9 50%, #00b8b3 100%);
}
.spotify-card.card-s8 {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #0770c4 100%);
}
.spotify-card.card-s9 {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 50%, #5a4fcf 100%);
}

/* Spotify chart canvas styles */
#spotifyGenderChart,
#spotifyAgeChart {
  height: auto !important;
  max-height: auto !important;
}

/* TikTok header section */
.tiktok-header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 0, 80, 0.2);
  border-bottom: 1px solid rgba(255, 0, 80, 0.2);
}
.tiktok-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  font-family: 'Rubik', sans-serif;
}
.tiktok-header a {
  color: #ff0050;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease, transform 0.2s ease;
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.tiktok-header a:hover,
.tiktok-header a:focus {
  color: #ff3366;
  border-bottom-color: #ff0050;
  transform: translateX(2px);
  outline: none;
}

/* TikTok grid section */
.tiktok-grid-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  padding: 0rem;
}
.tiktok-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0rem;
}
/* First 4 cards (2 rows x 2 columns): each card spans 6 columns */
.tiktok-card:nth-child(n+1):nth-child(-n+4) {
  grid-column: span 6;
}
/* Last 2 cards (1 row x 2 columns): each card spans 6 columns */
.tiktok-card:nth-child(n+5):nth-child(-n+6) {
  grid-column: span 6;
}
.tiktok-card {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.tiktok-card:hover .card-content {
  opacity: 0.95;
}

/* TikTok card color gradients - using black/red/pink palette */
.tiktok-card.card-t1 {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
}
.tiktok-card.card-t2 {
  background: linear-gradient(135deg, #ff0050 0%, #e60047 50%, #cc003d 100%);
}
.tiktok-card.card-t3 {
  background: linear-gradient(135deg, #ff3366 0%, #ff0050 50%, #e60047 100%);
}
.tiktok-card.card-t4 {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #0d0d0d 100%);
}
.tiktok-card.card-t5 {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #000000 100%);
}
.tiktok-card.card-t6 {
  background: linear-gradient(135deg, #ff0050 0%, #ff3366 50%, #ff6699 100%);
}

/* TikTok chart canvas styles */
#tiktokViewersChart,
#tiktokAgeChart {
  height: auto !important;
  max-height: auto !important;
}

/* Assets header section */
.assets-header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.assets-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  font-family: 'Rubik', sans-serif;
}

/* Assets grid section */
.assets-grid-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  padding: 4rem 1.5rem;
}
.assets-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.asset-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.asset-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.asset-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.asset-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.asset-item:hover img {
  transform: scale(1.05);
}

/* Press & Social section */
.press-social-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 4rem 1.5rem;
}
.press-social-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.press-row {
  width: 100%;
}
.interview-row {
  width: 100%;
}
.top-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}
.press-social-wrapper .top-row {
  gap: 5rem;
}
.social-row {
  width: 100%;
}
.press-column,
.interviewtopics-column {
  text-align: center;
}
.press-column {
  text-align: left;
}
.press-column h2,
.social-column h2,
.interviewtopics-column h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.social-column h2 {
  text-align: center;
}
.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.press-quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(91, 186, 213, 0.1) 0%, rgba(49, 133, 157, 0.05) 100%);
  border: 1px solid rgba(91, 186, 213, 0.3);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.press-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91, 186, 213, 0.2);
  border-color: rgba(91, 186, 213, 0.5);
  background: linear-gradient(135deg, rgba(91, 186, 213, 0.15) 0%, rgba(49, 133, 157, 0.08) 100%);
}
.press-quote p {
  margin: 0;
  color: #d1d1d1;
  line-height: 1.8;
  font-size: 1.0625rem;
  font-family: 'Roboto', sans-serif;
}
.press-quote .quote-text {
  font-style: italic;
  color: #e5e5e5;
  font-size: 1.125rem;
  line-height: 1.9;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(91, 186, 213, 0.6);
  flex-grow: 1;
}
.press-quote .quote-source {
  text-align: right;
  color: #b1b1b1;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.press-quote .quote-link {
  margin-top: 1rem;
}
.press-quote .quote-link a {
  color: #5bbad5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(91, 186, 213, 0.2) 0%, rgba(49, 133, 157, 0.15) 100%);
  border: 1px solid rgba(91, 186, 213, 0.4);
  border-radius: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.press-quote .quote-link a:hover,
.press-quote .quote-link a:focus {
  color: #9be3f4;
  background: linear-gradient(135deg, rgba(91, 186, 213, 0.3) 0%, rgba(49, 133, 157, 0.2) 100%);
  border-color: rgba(91, 186, 213, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 186, 213, 0.3);
  outline: none;
}
.press-quote .quote-link a.video-link {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(200, 0, 0, 0.15) 100%);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff6b6b;
}
.press-quote .quote-link a.video-link:hover,
.press-quote .quote-link a.video-link:focus {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(200, 0, 0, 0.2) 100%);
  border-color: rgba(255, 0, 0, 0.6);
  color: #ff8e8e;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}
.press-quote .quote-link .video-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.links-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.links-list a {
  color: #5bbad5;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.2s ease;
  word-break: break-word;
  max-width: 100%;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.links-list a:hover,
.links-list a:focus {
  color: #9be3f4;
  border-bottom-color: #5bbad5;
  transform: translateX(2px);
  outline: none;
}
.social-column {
  text-align: center;
}
.social-links-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f5f5f5;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: rgba(91, 186, 213, 0.1);
  border: 1px solid rgba(91, 186, 213, 0.3);
  min-width: 180px;
  justify-content: center;
  flex: 0 1 auto;
}
.social-link:hover,
.social-link:focus {
  color: #9be3f4;
  background-color: rgba(91, 186, 213, 0.2);
  border-color: rgba(91, 186, 213, 0.5);
  transform: translateY(-2px);
  outline: none;
}
.social-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Interview Topics column */
.interviewtopics-column {
  text-align: left;
}
.interviewtopics-column h2 {
  text-align: left;
}
.topics-intro {
  margin: 0 0 1.5rem;
  color: #d1d1d1;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.topics-list li {
  color: #e5e5e5;
  font-family: 'Roboto', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  padding: 1.5rem;
  position: relative;
  background: linear-gradient(135deg, rgba(91, 186, 213, 0.12) 0%, rgba(49, 133, 157, 0.08) 100%);
  border: 1px solid rgba(91, 186, 213, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topics-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(91, 186, 213, 0.25);
  border-color: rgba(91, 186, 213, 0.5);
  background: linear-gradient(135deg, rgba(91, 186, 213, 0.18) 0%, rgba(49, 133, 157, 0.12) 100%);
  color: #f5f5f5;
}
.topics-list li::before {
  display: none;
}

/* Albums grid section */
.albums-header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  padding: 0rem 1.5rem;
}
.albums-header h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.albums-grid-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  padding: 4rem 1.5rem;
}
.albums-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
}
.album-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.album-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.album-box:hover img {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}
.album-box h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.album-year {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9375rem;
  color: #d1d1d1;
  margin: 0;
  letter-spacing: 0.02em;
}
.album-genre {
  font-style: italic;
  font-size: 0.9375rem;
  color: #d1d1d1;
  margin: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* Contact section */
.contact-section {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 6rem 1.5rem;
  padding-top: 60px !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-wrapper h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-info p {
  margin: 0;
  color: #d1d1d1;
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
}
.contact-info button {
  margin-top: 1rem;
  padding: 1.25rem 4rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #5bbad5 0%, #31859d 50%, #1a5a6f 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Rubik', sans-serif;
  box-shadow: 0 4px 15px rgba(91, 186, 213, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.contact-info button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.contact-info button:hover::before {
  left: 100%;
}
.contact-info button:hover,
.contact-info button:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(91, 186, 213, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #6bcae8 0%, #3d9bb8 50%, #2a6b7f 100%);
  outline: none;
}
.contact-info button:active {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 8px 20px rgba(91, 186, 213, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
}
.contact-wrapper p.lead {
  margin: 0 0 3rem;
  color: #d1d1d1;
  line-height: 1.8;
  font-size: 1.125rem;
  font-family: 'Roboto', sans-serif;
  max-width: 600px;
}

/* Form styles */
form#support-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 700px;
}
form#support-form > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  color: #e5e5e5;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(20, 20, 20, 0.9);
  color: #f5f5f5;
  font-size: 1.0625rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #5bbad5;
  box-shadow: 0 0 0 4px rgba(91, 186, 213, 0.2), 0 4px 16px rgba(0, 0, 0, 0.3);
  background-color: rgba(25, 25, 25, 0.95);
}
textarea {
  min-height: 200px;
  resize: vertical;
  line-height: 1.6;
}
button[type="submit"] {
  align-self: center;
  padding: 1.25rem 4rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #5bbad5 0%, #31859d 50%, #1a5a6f 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Rubik', sans-serif;
  box-shadow: 0 4px 15px rgba(91, 186, 213, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
button[type="submit"]:hover::before {
  left: 100%;
}
button[type="submit"]:hover,
button[type="submit"]:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(91, 186, 213, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #6bcae8 0%, #3d9bb8 50%, #2a6b7f 100%);
  outline: none;
}
button[type="submit"]:active {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 8px 20px rgba(91, 186, 213, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hidden-field {
  position: absolute;
  left: -5000px;
  top: -5000px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
}
.form-feedback {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.form-feedback.is-visible {
  display: block;
}
.form-feedback.success {
  background-color: rgba(91, 186, 213, 0.1);
  border-color: rgba(91, 186, 213, 0.35);
  color: #9be3f4;
}
.form-feedback.error {
  background-color: rgba(200, 64, 64, 0.15);
  border-color: rgba(200, 64, 64, 0.45);
  color: #ffb1b1;
}

/* Links section */
.links-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
.links-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem;
}
.link-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.link-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}
.link-box-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.link-box:hover .link-box-image {
  transform: scale(1.15);
}
.link-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.link-box:hover .link-box-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.link-box-label {
  color: #f5f5f5;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  padding: 0.75rem 1.5rem;
  background-color: rgba(91, 186, 213, 0.2);
  border-radius: 8px;
  border: 2px solid rgba(91, 186, 213, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.link-box:hover .link-box-label {
  background-color: rgba(91, 186, 213, 0.35);
  border-color: rgba(91, 186, 213, 0.6);
  transform: scale(1.05);
}

/* Footer */
footer {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.95);
  text-align: center;
  color: #d1d1d1;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background-color: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.main-nav.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}
.main-nav li {
  margin: 0;
}
.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #5bbad5;
  outline: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #5bbad5;
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
.main-nav .nav-separator {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  user-select: none;
}

/* Responsive styles */
@media (max-width: 968px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 968px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .spotify-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .assets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
/* Tablet: 2 columns per row */
@media (min-width: 769px) and (max-width: 1024px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  /* Reset spans for tablet - each card spans 1 column */
  .youtube-card:nth-child(n+1):nth-child(-n+9),
  .youtube-card:nth-child(n+10):nth-child(-n+13) {
    grid-column: span 1;
  }
  .spotify-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  /* Reset spans for tablet - each card spans 1 column */
  .spotify-card:nth-child(n+1):nth-child(-n+6),
  .spotify-card:nth-child(n+7):nth-child(-n+9) {
    grid-column: span 1;
  }
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  /* Reset spans for tablet - each card spans 1 column */
  .tiktok-card:nth-child(n+1):nth-child(-n+4),
  .tiktok-card:nth-child(n+5):nth-child(-n+6) {
    grid-column: span 1;
  }
  .assets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .press-social-wrapper {
    gap: 3rem;
  }
  .top-row {
    gap: 2.5rem;
  }
  .press-quotes {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .topics-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .albums-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  section.hero img {
    max-width: 82%;
  }
  header.hero {
    padding: 0.75rem 1rem;
  }
  header.hero img {
    max-width: 82%;
  }
  .bio-header {
    padding: 2rem 1rem;
  }
  .bio-header h1 {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
  }
  .bio-section {
    padding: 3rem 1rem;
  }
  .bio-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .contact-section {
    padding: 4rem 1rem;
    min-height: auto;
  }
  .contact-wrapper h2 {
    font-size: 2rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
  }
  .contact-wrapper p.lead {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  form#support-form {
    gap: 1.75rem;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 1rem 1.125rem;
    font-size: 1rem;
  }
  textarea {
    min-height: 180px;
  }
  button[type="submit"] {
    padding: 1.1rem 3rem;
    font-size: 1rem;
  }
  .youtube-header {
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .youtube-header h2 {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
  .youtube-header a {
    font-size: 0.9375rem;
  }
  .youtube-grid-section {
    padding: 3rem 1rem;
  }
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .youtube-card {
    grid-column: 1 / -1;
  }
  .spotify-header {
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .spotify-header h2 {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
  .spotify-header a {
    font-size: 0.9375rem;
  }
  .spotify-grid-section {
    padding: 3rem 1rem;
  }
  .spotify-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .spotify-card {
    grid-column: 1 / -1;
  }
  .tiktok-header {
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .tiktok-header h2 {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
  .tiktok-header a {
    font-size: 0.9375rem;
  }
  .tiktok-grid-section {
    padding: 3rem 1rem;
  }
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .tiktok-card {
    grid-column: 1 / -1;
  }
  .assets-header {
    padding: 2rem 1rem;
  }
  .assets-header h2 {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
  .assets-grid-section {
    padding: 3rem 1rem;
  }
  .assets-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .press-social-section {
    padding: 3rem 1rem;
  }
  .press-social-wrapper {
    gap: 3rem;
  }
  .top-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .press-quotes {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .press-column h2,
  .social-column h2,
  .interviewtopics-column h2 {
    font-size: 1.75rem;
  }
  .topics-intro {
    font-size: 0.9375rem;
  }
  .topics-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .topics-list li {
    font-size: 1rem;
    padding: 1.25rem;
  }
  .press-quote {
    padding: 1.5rem;
  }
  .press-quote .quote-text {
    font-size: 1rem;
    padding-left: 1rem;
  }
  .albums-grid-section {
    padding: 3rem 1rem;
  }
  .albums-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .card-content {
    padding: 1.5rem;
  }
  .metric-label {
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
  }
  .metric-value {
    font-size: 3.5rem;
  }
  .duration-value {
    font-size: 3rem;
  }
  .card-content canvas {
    height: 180px !important;
  }
  .countries-list {
    gap: 0.75rem;
  }
  .country-item {
    font-size: 1rem;
  }
  .main-nav {
    padding: 1rem 1.25rem;
    width: 100%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
  }
  .main-nav ul {
    gap: 1.25rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .main-nav a {
    font-size: 0.875rem;
  }
}
@media (max-width: 640px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .link-box-label {
    font-size: 1.25rem;
  }
}
@media (max-width: 640px) {
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .spotify-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .assets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-section {
    padding: 3rem 1rem;
    min-height: auto;
  }
  .contact-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  .contact-wrapper p.lead {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
  form#support-form {
    gap: 1.5rem;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 0.95rem 1rem;
    font-size: 0.9375rem;
  }
  textarea {
    min-height: 160px;
  }
  button[type="submit"] {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
  }
  .press-social-section {
    padding: 2.5rem 1rem;
  }
  .press-social-wrapper {
    gap: 2.5rem;
  }
  .top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .press-quotes {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .press-column h2,
  .social-column h2,
  .interviewtopics-column h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .topics-intro {
    font-size: 0.875rem;
  }
  .topics-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .topics-list li {
    font-size: 0.9375rem;
    padding: 1.25rem;
  }
  .press-quote {
    padding: 1.25rem;
  }
  .press-quote p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .press-quote .quote-text {
    font-size: 1rem;
    padding-left: 1rem;
    line-height: 1.8;
  }
  .press-quote .quote-source {
    font-size: 0.875rem;
  }
  .press-quote .quote-link a {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  .links-list {
    gap: 1.25rem;
  }
  .links-list a {
    font-size: 0.875rem;
  }
  .social-links-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .social-link {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    min-width: 180px;
  }
  .social-icon {
    font-size: 1.25rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .youtube-card {
    grid-column: 1 / -1;
  }
  .card-content {
    padding: 1.25rem;
  }
  .metric-label {
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
  }
  .metric-value {
    font-size: 4rem;
  }
  .duration-value {
    font-size: 3.5rem;
  }
  .card-content canvas {
    height: 200px !important;
  }
  .countries-list {
    gap: 0.875rem;
  }
  .country-item {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .bio-header {
    padding: 1.5rem 0.75rem;
  }
  .bio-header h1 {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
  .bio-section {
    padding: 2rem 0.75rem;
  }
  .bio-wrapper p {
    font-size: 0.9375rem;
  }
  .contact-section {
    padding: 2rem 0.75rem;
  }
  .contact-wrapper h2 {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }
  .contact-info p {
    font-size: 0.875rem;
  }
  .contact-info button {
    padding: 0.95rem 2rem;
    font-size: 0.9375rem;
  }
  .youtube-header {
    padding: 1.5rem 0.75rem;
  }
  .youtube-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .youtube-header a {
    font-size: 0.875rem;
    word-break: break-all;
  }
  .youtube-grid-section {
    padding: 2rem 0.75rem;
  }
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .youtube-card {
    grid-column: 1 / -1;
  }
  .spotify-header {
    padding: 1.5rem 0.75rem;
  }
  .spotify-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .spotify-header a {
    font-size: 0.875rem;
    word-break: break-all;
  }
  .spotify-grid-section {
    padding: 2rem 0.75rem;
  }
  .spotify-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .spotify-card {
    grid-column: 1 / -1;
  }
  .tiktok-header {
    padding: 1.5rem 0.75rem;
  }
  .tiktok-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .tiktok-header a {
    font-size: 0.875rem;
    word-break: break-all;
  }
  .tiktok-grid-section {
    padding: 2rem 0.75rem;
  }
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* Reset all spans for mobile - each card takes full width */
  .tiktok-card {
    grid-column: 1 / -1;
  }
  .assets-header {
    padding: 1.5rem 0.75rem;
  }
  .assets-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .assets-grid-section {
    padding: 2rem 0.75rem;
  }
  .assets-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .card-content {
    padding: 1rem;
  }
  .metric-label {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .metric-value {
    font-size: 2.75rem;
  }
  .duration-value {
    font-size: 2.5rem;
  }
  .card-content canvas {
    height: 160px !important;
  }
  .press-social-section {
    padding: 2rem 0.75rem;
  }
  .press-social-wrapper {
    gap: 2rem;
  }
  .top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .press-quotes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .press-column h2,
  .social-column h2,
  .interviewtopics-column h2 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
  .topics-intro {
    font-size: 0.8125rem;
  }
  .topics-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .topics-list li {
    font-size: 0.875rem;
    padding: 1rem;
  }
  .press-quote {
    padding: 1rem;
  }
  .press-quote p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .press-quote .quote-text {
    font-size: 0.9375rem;
    padding-left: 0.75rem;
    line-height: 1.75;
  }
  .press-quote .quote-source {
    font-size: 0.8125rem;
  }
  .press-quote .quote-link a {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
  .links-list {
    gap: 1rem;
  }
  .links-list a {
    font-size: 0.8125rem;
  }
  .social-links-list {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .social-link {
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    min-width: 160px;
  }
  .social-icon {
    font-size: 1.125rem;
  }
  .countries-list {
    gap: 0.5rem;
  }
  .country-item {
    font-size: 0.9375rem;
  }
  .main-nav {
    padding: 0.875rem 1rem;
  }
  .main-nav ul {
    gap: 1rem;
  }
  .main-nav a {
    font-size: 0.8rem;
  }
  .contact-section {
    padding: 2.5rem 0.75rem;
    min-height: auto;
  }
  .contact-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .contact-wrapper p.lead {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
  form#support-form {
    gap: 1.5rem;
  }
  label {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  textarea {
    min-height: 150px;
  }
  button[type="submit"] {
    padding: 0.95rem 2rem;
    font-size: 0.875rem;
  }
}
