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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.lang-btn.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background: 
    /* Warm gradient inspired by African earth tones and innovation */
    linear-gradient(180deg, 
      #3E2723 0%,
      #5D3A1A 15%,
      #8B4513 30%,
      #A0522D 45%,
      #CD6600 60%,
      #E65100 72%,
      #F57C00 82%,
      #FF9800 90%,
      #FFC107 100%
    );
}

/* African pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    /* Tribal geometric patterns */
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 30px,
      rgba(255, 193, 7, 0.04) 30px,
      rgba(255, 193, 7, 0.04) 32px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 30px,
      rgba(230, 81, 0, 0.04) 30px,
      rgba(230, 81, 0, 0.04) 32px
    ),
    /* Diamond pattern inspired by Kente cloth */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(255, 152, 0, 0.03) 50px,
      rgba(255, 152, 0, 0.03) 52px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 50px,
      rgba(139, 69, 19, 0.03) 50px,
      rgba(139, 69, 19, 0.03) 52px
    );
  pointer-events: none;
}

/* Animated background elements */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 50% 90%, rgba(255, 193, 7, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(230, 81, 0, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 40% 60%, rgba(205, 102, 0, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255, 152, 0, 0.1) 0%, transparent 30%);
  animation: float 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(-15px, -25px) rotate(2deg) scale(1.02); }
  50% { transform: translate(-25px, -15px) rotate(5deg) scale(1); }
  75% { transform: translate(-10px, -30px) rotate(3deg) scale(1.01); }
}

/* Floating African-themed decorative elements */
.hero-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.2);
  animation: floatElement 8s ease-in-out infinite;
}

.deco-circle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  border-color: rgba(255, 193, 7, 0.2);
}

.deco-circle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  border-color: rgba(230, 81, 0, 0.25);
}

.deco-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 8%;
  animation-delay: 4s;
  border-color: rgba(255, 152, 0, 0.2);
}

.deco-circle:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 5%;
  animation-delay: 1s;
  border-color: rgba(139, 69, 19, 0.18);
}

.deco-diamond {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(230, 81, 0, 0.06));
  transform: rotate(45deg);
  animation: floatElement 10s ease-in-out infinite;
}

.deco-diamond:nth-child(5) {
  top: 15%;
  left: 15%;
  animation-delay: 3s;
}

.deco-diamond:nth-child(6) {
  top: 30%;
  right: 20%;
  animation-delay: 5s;
  width: 30px;
  height: 30px;
}

.deco-diamond:nth-child(7) {
  bottom: 35%;
  right: 15%;
  animation-delay: 7s;
  width: 50px;
  height: 50px;
}

/* African-inspired triangles */
.deco-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 43px solid rgba(255, 152, 0, 0.1);
  animation: floatElement 12s ease-in-out infinite;
}

.deco-triangle:nth-child(8) {
  top: 25%;
  left: 20%;
  animation-delay: 2s;
}

.deco-triangle:nth-child(9) {
  bottom: 20%;
  left: 25%;
  animation-delay: 6s;
  transform: rotate(180deg);
  border-bottom-color: rgba(230, 81, 0, 0.08);
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
}

/* Abstract glow effect - inspired by African innovation */
.sun-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse at center bottom, 
    rgba(255, 193, 7, 0.5) 0%,
    rgba(255, 152, 0, 0.3) 30%,
    rgba(245, 124, 0, 0.15) 50%,
    transparent 75%
  );
  filter: blur(60px);
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.05); }
}

/* Kente-inspired geometric pattern border */
.tree-silhouette {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: 
    /* Kente-inspired horizontal stripes */
    repeating-linear-gradient(
      0deg,
      rgba(255, 193, 7, 0.15) 0px,
      rgba(255, 193, 7, 0.15) 4px,
      transparent 4px,
      transparent 8px
    ),
    /* Adinkra-inspired zigzag pattern */
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 20px,
      rgba(230, 81, 0, 0.1) 20px,
      rgba(230, 81, 0, 0.1) 40px
    ),
    /* Ndebele-inspired geometric shapes */
    linear-gradient(
      to top,
      rgba(139, 69, 19, 0.25) 0%,
      rgba(139, 69, 19, 0.15) 30%,
      transparent 100%
    );
  opacity: 0.8;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 35px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(245, 158, 11, 0.3);
}

.hero h1 span {
  display: block;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 12px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.hero-icon-item:hover {
  transform: translateY(-5px);
}

.hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.2));
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
  transition: all 0.3s ease;
}

.hero-icon-item:hover .hero-icon {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25);
}

.hero-icon-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Event Info Section */
.event-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fbbf24;
}

.event-date svg {
  width: 28px;
  height: 28px;
}

.event-date-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.local-time {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
  display: inline-block;
}

.event-languages {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
  justify-content: center;
}

.event-languages svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.lang-flags {
  display: flex;
  gap: 8px;
  font-size: 1.3rem;
}

/* Section Styles */
section {
  padding: 100px 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* History Section */
.history {
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.05), transparent);
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .history-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.history-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.history-text p {
  margin-bottom: 20px;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Purpose Section */
.purpose {
  background: linear-gradient(180deg, transparent, rgba(217, 119, 6, 0.05), transparent);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.purpose-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.purpose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.purpose-card:hover::before {
  opacity: 1;
}

.purpose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.purpose-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fbbf24;
}

.purpose-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Speakers Section */
.speakers {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.05), transparent);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

.speaker-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.speaker-card-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.speaker-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-card-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.speaker-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.speaker-card-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speaker-card-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #fbbf24;
}

.speaker-card-social {
  margin-top: 12px;
}

.speaker-card-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.speaker-card-social a:hover {
  background: #0077b5;
  color: white;
}

/* Sessions Section */
.sessions {
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.08), transparent);
}

/* Agenda Timeline Styles */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.agenda-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.agenda-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 120px;
}

.agenda-time {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 12px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.agenda-time-line {
  width: 3px;
  flex-grow: 1;
  background: linear-gradient(180deg, #fbbf24, rgba(251, 191, 36, 0.2));
  margin-top: 12px;
  border-radius: 2px;
  min-height: 40px;
}

.agenda-item:last-child .agenda-time-line {
  display: none;
}

.agenda-content {
  flex: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.agenda-content:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Live session styles */
.agenda-item.is-live .agenda-content {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.08));
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.agenda-item.is-live .agenda-time {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(34, 197, 94, 0.6);
  }
}

.agenda-speakers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.agenda-speaker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-speaker-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  overflow: hidden;
  flex-shrink: 0;
}

a.agenda-speaker-avatar {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.agenda-speaker-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
}

.agenda-speaker-name {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}

.speaker-name-link {
  text-decoration: none;
}

.speaker-name-link:hover .agenda-speaker-name {
  color: #fbbf24;
}

.agenda-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px;
}

.agenda-abstract {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.agenda-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Break/Pause Styles */
.agenda-break .agenda-time-break {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.agenda-content-break {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15), rgba(75, 85, 99, 0.08)) !important;
  border: 1px dashed rgba(255, 255, 255, 0.2) !important;
  text-align: center;
}

.agenda-content-break .agenda-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.agenda-content-break .agenda-abstract {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.agenda-content-break:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .agenda-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .agenda-time-block {
    flex-direction: row;
    width: 100%;
    gap: 12px;
  }
  
  .agenda-time {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  
  .agenda-time-line {
    height: 3px;
    width: auto;
    flex-grow: 1;
    margin-top: 0;
    align-self: center;
    min-height: auto;
  }
  
  .agenda-content {
    margin-bottom: 20px;
    padding: 20px;
  }
  
  .agenda-content:hover {
    transform: none;
  }
  
  .agenda-title {
    font-size: 1.1rem;
  }
}

/* Legacy session styles - keep for compatibility */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

@media (max-width: 400px) {
  .sessions-grid {
    grid-template-columns: 1fr;
  }
}

.session-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.session-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.session-header {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.2));
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.session-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 12px;
}

.session-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.session-body {
  padding: 24px;
}

.session-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.session-speakers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.session-speaker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.speaker-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.speaker-info h4 {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.speaker-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Speaker LinkedIn links in sessions */
a.speaker-avatar {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.speaker-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
}

.speaker-name-link {
  text-decoration: none;
}

.speaker-name-link h4 {
  transition: color 0.2s ease;
}

.speaker-name-link:hover h4 {
  color: #fbbf24;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  margin-left: auto;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Track Tabs */
.track-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.track-tab {
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.track-tab:hover {
  border-color: rgba(245, 158, 11, 0.5);
  color: white;
  background: rgba(245, 158, 11, 0.1);
}

.track-tab.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.sessions-track {
  display: none;
}

.sessions-track.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* YouTube Section */
.youtube {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.1));
}

.youtube-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 48px;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.youtube-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}

.youtube h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.youtube p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
}

.youtube-btn svg {
  width: 24px;
  height: 24px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

footer a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f59e0b;
}

/* Language visibility */
[data-lang="pt"], [data-lang="fr"] { display: none; }

/* English active */
html[lang="en"] [data-lang="en"] { display: block; }
html[lang="en"] span[data-lang="en"] { display: inline; }
html[lang="en"] [data-lang="pt"], html[lang="en"] [data-lang="fr"] { display: none; }
html[lang="en"] span[data-lang="pt"], html[lang="en"] span[data-lang="fr"] { display: none; }

/* Portuguese active */
html[lang="pt"] [data-lang="pt"] { display: block; }
html[lang="pt"] span[data-lang="pt"] { display: inline; }
html[lang="pt"] [data-lang="en"], html[lang="pt"] [data-lang="fr"] { display: none; }
html[lang="pt"] span[data-lang="en"], html[lang="pt"] span[data-lang="fr"] { display: none; }

/* French active */
html[lang="fr"] [data-lang="fr"] { display: block; }
html[lang="fr"] span[data-lang="fr"] { display: inline; }
html[lang="fr"] [data-lang="en"], html[lang="fr"] [data-lang="pt"] { display: none; }
html[lang="fr"] span[data-lang="en"], html[lang="fr"] span[data-lang="pt"] { display: none; }

/* ==================== MOBILE RESPONSIVE STYLES ==================== */

/* Tablets and smaller (max-width: 992px) */
@media (max-width: 992px) {
  .hero-icons {
    gap: 25px;
  }
  
  .hero-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .purpose-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .sessions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .sun-glow {
    width: 500px;
    height: 250px;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  /* Language Switcher - mobile optimized */
  .lang-switcher {
    top: 10px;
    right: 10px;
    padding: 6px;
    gap: 4px;
  }
  
  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 15px 50px;
    min-height: auto;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  
  .hero h1 span {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 35px;
  }
  
  /* Hero Icons Grid */
  .hero-icons {
    gap: 15px;
    justify-content: center;
  }
  
  .hero-icon-item {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 80px;
  }
  
  .hero-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    border-radius: 14px;
  }
  
  .hero-icon-text {
    font-size: 11px;
  }
  
  /* Event Info */
  .event-info {
    padding: 18px 20px;
    margin-bottom: 35px;
  }
  
  .event-date {
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .event-date svg {
    width: 22px;
    height: 22px;
  }
  
  .event-languages {
    font-size: 0.85rem;
  }
  
  .lang-flags {
    font-size: 1.1rem;
  }
  
  /* Sections */
  section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  /* History Stats */
  .history-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-card {
    padding: 20px 15px;
    border-radius: 16px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  /* Purpose Cards */
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .purpose-card {
    padding: 28px 24px;
    border-radius: 18px;
  }
  
  .purpose-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  
  .purpose-card h3 {
    font-size: 1.2rem;
  }
  
  .purpose-card p {
    font-size: 0.9rem;
  }
  
  /* Track Tabs */
  .track-tabs {
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .track-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  /* Session Cards */
  .sessions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .session-card {
    border-radius: 18px;
  }
  
  .session-header {
    padding: 18px;
  }
  
  .session-title {
    font-size: 1.1rem;
  }
  
  .session-body {
    padding: 18px;
  }
  
  .session-description {
    font-size: 0.9rem;
  }
  
  .session-speaker {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .online-badge {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  
  /* YouTube Section */
  .youtube {
    padding: 80px 15px;
  }
  
  .youtube-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    border-radius: 18px;
    margin-bottom: 20px;
  }
  
  .youtube h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }
  
  .youtube p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .youtube-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  /* Footer */
  footer {
    padding: 40px 15px;
  }
  
  footer p {
    font-size: 13px;
  }
  
  /* Decorative Elements - reduce on mobile */
  .deco-circle,
  .deco-diamond,
  .deco-triangle {
    opacity: 0.4;
    transform: scale(0.7);
  }
  
  .sun-glow {
    width: 350px;
    height: 175px;
    bottom: -50px;
  }
  
  .tree-silhouette {
    height: 100px;
    opacity: 0.3;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .lang-switcher {
    top: 8px;
    right: 8px;
    padding: 4px;
    gap: 3px;
  }
  
  .lang-btn {
    padding: 5px 10px;
    font-size: 11px;
  }
  
  .hero {
    padding: 70px 12px 40px;
  }
  
  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
    gap: 6px;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
  
  .hero h1 span {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  /* Hero icons - 3 columns on very small screens */
  .hero-icons {
    gap: 10px;
  }
  
  .hero-icon-item {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 70px;
  }
  
  .hero-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
  }
  
  .hero-icon-text {
    font-size: 10px;
  }
  
  .event-info {
    padding: 15px;
    border-radius: 16px;
  }
  
  .event-date {
    font-size: 0.85rem;
  }
  
  .event-date svg {
    width: 18px;
    height: 18px;
  }
  
  .event-languages {
    font-size: 0.8rem;
  }
  
  section {
    padding: 50px 12px;
  }
  
  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  
  /* History - stack stats vertically */
  .history-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .stat-card {
    padding: 18px 12px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .history-text {
    font-size: 0.95rem;
  }
  
  /* Track Tabs - wrap nicely */
  .track-tabs {
    gap: 6px;
  }
  
  .track-tab {
    padding: 8px 12px;
    font-size: 12px;
    flex: 1;
    min-width: auto;
    text-align: center;
  }
  
  .session-header {
    padding: 15px;
  }
  
  .session-time {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .session-title {
    font-size: 1rem;
  }
  
  .session-body {
    padding: 15px;
  }
  
  .speaker-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  
  .speaker-info h4 {
    font-size: 0.9rem;
  }
  
  .speaker-info p {
    font-size: 11px;
  }
  
  .youtube-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .youtube-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    gap: 10px;
  }
  
  .youtube-btn svg {
    width: 20px;
    height: 20px;
  }
  
  /* Hide some decorative elements on very small screens */
  .deco-circle:nth-child(3),
  .deco-circle:nth-child(4),
  .deco-diamond:nth-child(7),
  .deco-triangle:nth-child(9) {
    display: none;
  }
  
  .sun-glow {
    width: 280px;
    height: 140px;
  }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .hero h1 span {
    font-size: 0.9rem;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .hero-icon-item {
    flex: 0 0 calc(33.333% - 8px);
  }
  
  .hero-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .hero-icon-text {
    font-size: 9px;
  }
  
  .track-tab {
    font-size: 11px;
    padding: 7px 10px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }
  
  .hero-icons {
    margin-bottom: 30px;
  }
  
  .sun-glow {
    display: none;
  }
  
  .tree-silhouette {
    height: 60px;
  }
}

/* Registration CTA Button */
.register-cta {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* Hero button - white for contrast with orange/brown gradient */
.hero .register-btn {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  color: #3E2723;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.5);
  border: 3px solid rgba(62, 39, 35, 0.2);
}

.hero .register-btn:hover {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #2E1810;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  border: none;
  cursor: pointer;
}

.register-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.register-btn svg {
  width: 24px;
  height: 24px;
}

.register-btn-hero {
  padding: 20px 48px;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.register-btn-secondary {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
  border: 2px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.register-btn-secondary:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: transparent;
}

/* Mobile adjustments for register buttons */
@media (max-width: 768px) {
  .register-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .register-btn-hero {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .register-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .register-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .register-btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Registration Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 158, 11, 0.1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #f59e0b;
  transform: scale(1.1);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 32px;
  font-size: 1rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-lang-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.modal-lang-btn:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.modal-flag {
  font-size: 2.5rem;
}

.modal-lang-name {
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal-title {
    font-size: 1.4rem;
  }
  
  .modal-subtitle {
    font-size: 0.9rem;
  }
  
  .modal-lang-btn {
    padding: 14px 18px;
    gap: 12px;
  }
  
  .modal-flag {
    font-size: 2rem;
  }
  
  .modal-lang-name {
    font-size: 1rem;
  }
}

/* YouTube Watch Button */
.session-youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #FF0000, #CC0000);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.session-youtube-btn:hover {
  background: linear-gradient(135deg, #CC0000, #990000);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.session-youtube-btn svg {
  flex-shrink: 0;
}

.agenda-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 480px) {
  .session-youtube-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
