/* =================================================================
   SHARED COMPONENT STYLES
   Starting fresh - clean slate for new template styling
   ================================================================= */
/* =================================================================
   BANNER BUTTON STYLES
   Enhanced button group styling with multiple styles and sizes
   ================================================================= */
.btn-group {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-group.btn-style-1 .btn-solid, .btn-group.btn-style-1 .btn-outline {
  font-weight: 400;
  border-radius: 0px;
  text-transform: none;
}
.btn-group.btn-style-2 .btn-solid, .btn-group.btn-style-2 .btn-outline {
  font-weight: 400;
  border-radius: 8px;
  text-transform: none;
}
.btn-group.btn-style-3 .btn-solid, .btn-group.btn-style-3 .btn-outline {
  font-weight: 400;
  border-radius: 50px;
  text-transform: none;
}
.btn-group.btn-style-4 .btn-solid, .btn-group.btn-style-4 .btn-outline {
  font-weight: 400;
  border-radius: 0px;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-group.btn-style-5 .btn-solid, .btn-group.btn-style-5 .btn-outline {
  font-weight: 400;
  border-radius: 12px;
  text-transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-group.btn-size-default .btn-solid, .btn-group.btn-size-default .btn-outline {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 24px;
}
.btn-group.btn-size-medium .btn-solid, .btn-group.btn-size-medium .btn-outline {
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 14px 28px;
}
.btn-group.btn-size-large .btn-solid, .btn-group.btn-size-large .btn-outline {
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 16px 32px;
}
.btn-group .btn-solid {
  background-color: var(--theme-color);
  color: white;
  border: 2px solid var(--theme-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-group .btn-solid:hover {
  opacity: 0.8;
}
.btn-group .btn-outline {
  background-color: transparent;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-group .btn-outline:hover {
  opacity: 0.8;
}
.btn-group .btn-outline.outline-white {
  color: #FFF !important;
  border-color: #FFF !important;
  background-color: transparent !important;
}
.btn-group .btn-outline.solid-white {
  color: #000 !important;
  border-color: #FFF !important;
  background-color: #FFF !important;
}
.btn-group .btn-outline.solid-black {
  color: #FFF !important;
  border-color: #000 !important;
  background-color: #000 !important;
}

/* BASE */
header {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hero {
  padding: 8rem 0 6rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-button {
  background: var(--theme-color);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content {
  margin-top: -50px;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 10;
}

.section {
  padding: 4rem 0;
}

footer {
  padding: 20px;
}

#footer-container {
  min-height: 90px;
  display: flex;
  align-items: center;
  margin-top: 60px;
}
#footer-container.theme-dark {
  background: #000;
}
#footer-container.theme-dark .footer-logo, #footer-container.theme-dark .text-copyright, #footer-container.theme-dark a {
  color: #FFF;
}
#footer-container.theme-light {
  background: #FFF;
}
#footer-container.theme-light .footer-logo, #footer-container.theme-light .text-copyright, #footer-container.theme-light a {
  color: #000;
}

.fw-container {
  max-width: 100% !important;
}

/* HEADER */
#header-container {
  padding-left: 25px;
  padding-right: 25px;
}

.header-content, .header-content-split {
  padding: 20px 0;
  /* Navigation Font Styling */
  /* Semantic Navigation Structure */
  /* Dropdown Navigation - Submenu Support */
}
.header-content .header-logo, .header-content-split .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-content .header-logo img, .header-content .header-logo svg, .header-content-split .header-logo img, .header-content-split .header-logo svg {
  width: auto;
  display: block;
  object-fit: contain;
}
.header-content .header-logo .logo-link, .header-content-split .header-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.header-content .header-logo .logo-link:hover, .header-content-split .header-logo .logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.header-content .logo-text, .header-content-split .logo-text {
  line-height: 100%;
  margin: 0;
}
.header-content .navbar a, .header-content .nav-link, .header-content .navigation-item, .header-content .main-nav a, .header-content nav a, .header-content .header-nav a, .header-content-split .navbar a, .header-content-split .nav-link, .header-content-split .navigation-item, .header-content-split .main-nav a, .header-content-split nav a, .header-content-split .header-nav a {
  font-family: inherit; /* Will be overridden by template variables */
  text-decoration: none;
  transition: all 0.3s ease;
}
.header-content .navbar a:hover, .header-content .navbar a:focus, .header-content .nav-link:hover, .header-content .nav-link:focus, .header-content .navigation-item:hover, .header-content .navigation-item:focus, .header-content .main-nav a:hover, .header-content .main-nav a:focus, .header-content nav a:hover, .header-content nav a:focus, .header-content .header-nav a:hover, .header-content .header-nav a:focus, .header-content-split .navbar a:hover, .header-content-split .navbar a:focus, .header-content-split .nav-link:hover, .header-content-split .nav-link:focus, .header-content-split .navigation-item:hover, .header-content-split .navigation-item:focus, .header-content-split .main-nav a:hover, .header-content-split .main-nav a:focus, .header-content-split nav a:hover, .header-content-split nav a:focus, .header-content-split .header-nav a:hover, .header-content-split .header-nav a:focus {
  opacity: 8;
}
.header-content .header-nav ul, .header-content-split .header-nav ul {
  display: flex; /* Default flex for desktop */
  flex-wrap: nowrap; /* Force single line */
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header-content .header-nav li, .header-content-split .header-nav li {
  margin: 0;
  padding: 0;
  white-space: nowrap; /* Prevent text wrapping */
}
.header-content .has-submenu, .header-content-split .has-submenu {
  position: relative;
}
.header-content .has-submenu > a, .header-content-split .has-submenu > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
}
.header-content .has-submenu > a:hover, .header-content .has-submenu > a:focus, .header-content-split .has-submenu > a:hover, .header-content-split .has-submenu > a:focus {
  opacity: 8;
}
.header-content .has-submenu > a .chevron-down, .header-content-split .has-submenu > a .chevron-down {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  opacity: 0.8;
}
.header-content .has-submenu .submenu, .header-content-split .has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: fit-content;
  min-width: 170px;
  max-width: 210px;
  white-space: normal;
  border-radius: 4px;
  z-index: 1000;
  padding: 4px 0;
  gap: 0 !important;
  display: none;
  margin-top: 0;
  background: white;
  border: 1px solid #dee2e6;
  list-style: none;
  flex-direction: column;
}
.header-content .has-submenu .submenu li, .header-content-split .has-submenu .submenu li {
  width: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.header-content .has-submenu .submenu li a, .header-content-split .has-submenu .submenu li a {
  display: block;
  font-size: 15px;
  line-height: 120%;
  color: #141414 !important;
  text-decoration: none;
  padding: 8px 10px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.header-content .has-submenu .submenu li a:hover, .header-content-split .has-submenu .submenu li a:hover {
  background: rgba(0, 0, 0, 0.04);
}
.header-content .has-submenu:hover .submenu,
.header-content .has-submenu .submenu:hover, .header-content-split .has-submenu:hover .submenu,
.header-content-split .has-submenu .submenu:hover {
  display: flex;
}

.header-content .header-nav {
  gap: 15px;
}
.header-content.hdr-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-content.hdr-2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.header-content.hdr-2 .nav-left {
  justify-self: start;
}
.header-content.hdr-2 .logo-center {
  justify-self: center;
  display: flex;
  justify-content: center;
}
.header-content.hdr-2 .nav-right {
  justify-self: end;
}
.header-content.hdr-4 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}
.header-content.hdr-4 .nav-left {
  justify-self: end;
}
.header-content.hdr-4 .logo-center {
  justify-self: center;
  display: flex;
  justify-content: center;
}
.header-content.hdr-4 .nav-right {
  justify-self: start;
}
.header-content.hdr-9 .logo-center {
  display: flex;
  justify-content: center;
}
.header-content.hdr-8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul > li .login-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ================================================================
   MOBILE MENU STYLES
   Mobile-responsive header with burger menu and slide-in sidebar
   ================================================================ */
/* Mobile Menu Burger Icon */
.mobile-menu-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.mobile-menu-burger svg {
  stroke: currentColor;
  color: inherit;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.mobile-menu-overlay-visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: var(--website-background-color);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu-sidebar.mobile-menu-open {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close svg {
  stroke: currentColor;
  width: 24px;
  height: 24px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  padding: 20px;
  /* Mobile submenu styles - Accordion Behavior */
}
.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-nav li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-menu-nav li:last-child {
  border-bottom: none;
}
.mobile-menu-nav a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  transition: background 0.2s ease;
}
.mobile-menu-nav a:hover {
  background: rgba(0, 0, 0, 0.03);
}
.mobile-menu-nav .has-submenu {
  position: relative;
  /* Flex wrapper for link + toggle button */
  /* Link takes up most space */
  /* Toggle button for accordion */
  /* Hide submenu by default */
  /* Show submenu when accordion is open */
}
.mobile-menu-nav .has-submenu .mobile-menu-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mobile-menu-nav .has-submenu .mobile-menu-link {
  flex: 1;
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  transition: background 0.2s ease;
}
.mobile-menu-nav .has-submenu .mobile-submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.mobile-menu-nav .has-submenu .mobile-submenu-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
.mobile-menu-nav .has-submenu .submenu {
  position: static;
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.02);
  border: none;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
}
.mobile-menu-nav .has-submenu .submenu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-menu-nav .has-submenu .submenu li:last-child {
  border-bottom: none;
}
.mobile-menu-nav .has-submenu .submenu li a {
  padding-left: 30px;
  font-size: 15px;
}
.mobile-menu-nav .has-submenu.submenu-open .submenu {
  display: flex;
}
.mobile-menu-nav .has-submenu.submenu-open .mobile-submenu-toggle svg {
  transform: rotate(0deg);
}

/* Mobile-specific header adjustments */
@media (max-width: 1023px) {
  .header-content {
    /* Force logo on left, burger on right for all layouts */
  }
  .header-content.hdr-1, .header-content.hdr-2, .header-content.hdr-4, .header-content.hdr-8 {
    display: flex !important;
    grid-template-columns: unset !important;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  .header-content .logo-center {
    justify-self: start !important;
  }
  .header-content .nav-left, .header-content .nav-right {
    display: none !important;
  }
  /* Prevent logo from shrinking */
  .header-logo {
    flex-shrink: 0;
  }
}
/* BANNER */
.section-banner {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.section-banner h1 {
  color: var(--theme-color);
}

/* Header Behavior Styles */
.header-default {
  position: static;
  background: rgb(255, 255, 255);
  z-index: 100;
}

.header-sticky {
  position: sticky;
  top: 0;
  background: rgb(255, 255, 255);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-transparent-default {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  box-shadow: none;
}

.header-transparent-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: none;
}

.header-transparent-sticky.scrolled {
  position: fixed;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Color Override Styles */
.header-default[data-has-color=true],
.header-sticky[data-has-color=true] {
  background-color: rgba(var(--header-color-rgb), calc(var(--header-opacity) / 100)) !important;
}

.banner-01 .btn-group {
  justify-content: center;
}

/* Default Spacing and Lighheights */
h1, h2, h3, h4, h5, h6, .section .section-title, .page-title {
  line-height: 120%;
}

p, ol, ul {
  line-height: 170%;
  margin-bottom: 25px;
}

.cta-template-01.btn-group {
  align-items: center;
  justify-content: center;
}

.template-inner-page.dashboard {
  color: #080218;
}
.template-inner-page.dashboard h2, .template-inner-page.dashboard h3, .template-inner-page.dashboard h4, .template-inner-page.dashboard h5, .template-inner-page.dashboard h6 {
  color: #07011C;
}
.template-inner-page.dashboard p, .template-inner-page.dashboard ul, .template-inner-page.dashboard ol {
  font-weight: 400;
  color: #080218;
}

/* Podcast Page */
.podcast-content h2, .podcast-content-2 h2, .podcast-content-3 h2 {
  font-size: 32px !important;
}
.podcast-content h3, .podcast-content-2 h3, .podcast-content-3 h3 {
  font-size: 20px !important;
}
.podcast-content h4, .podcast-content-2 h4, .podcast-content-3 h4 {
  font-size: 22px !important;
}
.podcast-content p.opacity-70, .podcast-content-2 p.opacity-70, .podcast-content-3 p.opacity-70 {
  opacity: 0.7;
}
.podcast-content .podcast-episodes-scroll .gap-4, .podcast-content-2 .podcast-episodes-scroll .gap-4, .podcast-content-3 .podcast-episodes-scroll .gap-4 {
  cursor: pointer;
  transition: all 0.3s;
}
.podcast-content .podcast-episodes-scroll .gap-4:hover, .podcast-content-2 .podcast-episodes-scroll .gap-4:hover, .podcast-content-3 .podcast-episodes-scroll .gap-4:hover {
  opacity: 0.7;
}

.podcast-content-2 #hero-section p.opacity-70, .podcast-content-3 #hero-section p.opacity-70 {
  font-size: 20px !important;
}
.podcast-content-2 #hero-section #hero-title, .podcast-content-3 #hero-section #hero-title {
  margin-top: 20px;
}
.podcast-content-2 .featured-img, .podcast-content-3 .featured-img {
  transition: all 0.3s;
}
.podcast-content-2 .featured-img:hover, .podcast-content-2 .featured-img:focus, .podcast-content-3 .featured-img:hover, .podcast-content-3 .featured-img:focus {
  opacity: 0.7;
}
.podcast-content-2 .bottom-playlist .media-thumbnail, .podcast-content-3 .bottom-playlist .media-thumbnail {
  transition: all 0.3s;
}
.podcast-content-2 .bottom-playlist .media-thumbnail:hover, .podcast-content-2 .bottom-playlist .media-thumbnail:focus, .podcast-content-3 .bottom-playlist .media-thumbnail:hover, .podcast-content-3 .bottom-playlist .media-thumbnail:focus {
  opacity: 0.7;
}

/* =================================================================
   404 ERROR PAGE STYLES
   ================================================================= */
.error-404-wrapper {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.error-404-numbers {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.error-404-digit {
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  line-height: 1;
  color: #E0E7FF;
  opacity: 0.6;
  flex-shrink: 0;
  display: inline-block;
}
[data-theme=dark] .error-404-digit {
  color: #3B4463;
  opacity: 0.8;
}

.error-404-robot {
  width: 100%;
  max-width: 600px;
  margin: 0 -8vw;
}

.suspended-robot {
  width: 100%;
  max-width: 600px;
}

.error-404-message-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-404-message {
  text-align: center;
  font-weight: 400;
  margin: -60px auto 40px auto;
  letter-spacing: 0.5px;
}
.error-404-message.suspended-message {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}
[data-theme=dark] .error-404-message {
  color: #9CA3AF;
}

.error-404-button {
  display: inline-block !important;
  padding: 1rem 3rem !important;
  background: #4F6BED !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  font-weight: 400 !important;
  font-size: 1.2rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 14px 0 rgba(79, 107, 237, 0.4) !important;
  border: none !important;
  cursor: pointer !important;
}
.error-404-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px 0 rgba(79, 107, 237, 0.6) !important;
  background: #3E5DD9 !important;
  color: white !important;
}

@media (max-width: 768px) {
  .error-404-wrapper {
    padding: 2rem 1rem;
    min-height: 60vh;
  }
  .error-404-numbers {
    gap: 0;
    margin-bottom: 1.5rem;
  }
  .error-404-digit {
    font-size: clamp(5rem, 18vw, 8rem);
  }
  .error-404-robot {
    width: clamp(150px, 30vw, 250px);
    height: clamp(150px, 30vw, 250px);
  }
  .suspended-robot {
    width: 350px;
    height: 350px;
  }
  .error-404-message {
    font-size: 1rem;
    margin-top: -40px;
    margin-bottom: 1.5rem;
  }
  .error-404-button {
    padding: 0.875rem 2.5rem !important;
    font-size: 0.95rem !important;
  }
}
/* =================================================================
   PODCAST LAYOUTS - HORIZONTAL SCROLLABLE PLAYLIST
   ================================================================= */
.bottom-playlist-scroll {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}

.bottom-playlist-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.playlist-episode-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}

/* =================================================================
   MEDIA CHROME PLAYER - AUDIO POSTER FIX
   Keep poster image visible during audio playback
   ================================================================= */
media-theme-demuxed-2022[mediahasplayed] img[slot=poster] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.tooltip-full-width .w-fit {
  width: 100% !important;
}

.section-shop .product-title {
  font-size: 18px;
  margin-bottom: 5px;
}
.section-shop .product-price {
  font-size: 18px;
  letter-spacing: 1px;
}

/* =================================================================
   EVENT Section
   ================================================================= */
.event-card-item .event-card-height {
  min-height: 550px;
  display: flex;
  justify-content: space-between;
}
.event-card-item .event-card-height:before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(224deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* =================================================================
   EVENT SINGLE PAGE
   ================================================================= */
.event-section-title {
  font-size: 30px;
}

.event-title {
  font-size: 36px;
  font-weight: 400;
}

.event-modal-content .modal-title {
  font-size: 24px;
  font-weight: 500;
}
.event-modal-content .ticket-info h3 {
  font-size: 20px;
}
.event-modal-content .event-modal-right h3 {
  font-size: 24px;
  font-weight: 500;
}
.event-modal-content .success-content h2 {
  font-size: 34px;
}

.section-events .section-subtitle, .video-section .section-subtitle, .section-blog .section-subtitle, .featured-section .section-subtitle, .testimonial-section .section-subtitle {
  font-size: initial;
}

.section-blog article {
  max-width: 100%;
}
.section-blog article h3 {
  font-size: 28px;
  font-weight: initial;
}
.section-blog article h4 {
  font-size: 24px;
  font-weight: initial;
}

.podcast-content-2, .podcast-content-3 {
  padding-top: 40px;
}

/* Account Dropdown Styles */
.account-dropdown-item {
  position: relative;
}
.account-dropdown-item .account-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s;
}
.account-dropdown-item .account-trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.account-dropdown-item .account-trigger .account-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.account-dropdown-item .account-trigger .account-name {
  font-weight: 500;
  color: inherit;
}
.account-dropdown-item .account-trigger .chevron-down {
  transition: transform 0.2s;
}
.account-dropdown-item:hover .account-dropdown,
.account-dropdown-item .account-dropdown:hover {
  display: block;
}
.account-dropdown-item .account-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 220px;
  margin-top: 0;
  padding-top: 8px;
  background: transparent;
  border-radius: 12px;
  z-index: 1000;
}
.account-dropdown-item .account-dropdown::before {
  content: "";
  display: block;
  height: 8px;
}
.account-dropdown-item .account-dropdown .account-dropdown-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.account-dropdown-item .account-dropdown .account-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e5e5;
}
.account-dropdown-item .account-dropdown .account-dropdown-header .account-dropdown-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.account-dropdown-item .account-dropdown .account-dropdown-header .account-dropdown-info {
  flex: 1;
}
.account-dropdown-item .account-dropdown .account-dropdown-header .account-dropdown-info .account-dropdown-name {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 1px;
}
.account-dropdown-item .account-dropdown .account-dropdown-header .account-dropdown-info .account-dropdown-username {
  font-size: 12px;
  color: #666;
}
.account-dropdown-item .account-dropdown .account-dropdown-link {
  display: block;
  padding: 8px 12px;
  color: #333 !important;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.15s;
}
.account-dropdown-item .account-dropdown .account-dropdown-link.account-token-balance {
  display: flex !important;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.account-dropdown-item .account-dropdown .account-dropdown-link:hover {
  background-color: #f8f8f8;
}
.account-dropdown-item .account-dropdown .account-dropdown-divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 2px 0;
}

.account-dropdown-content span.token-amount {
  padding-left: 5px;
}
