.elementor-93584 .elementor-element.elementor-element-432fd01{--display:flex;--padding-top:40px;--padding-bottom:40px;--padding-left:40px;--padding-right:40px;}.elementor-93584 .elementor-element.elementor-element-432fd01:not(.elementor-motion-effects-element-type-background), .elementor-93584 .elementor-element.elementor-element-432fd01 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-93584 .elementor-element.elementor-element-71718f9.elementor-element{--align-self:stretch;}/* Start custom CSS for html, class: .elementor-element-71718f9 */.container {
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ef7d00, #ff9a2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.search-container {
  background: rgba(63, 56, 55, 0.95);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box {
  position: relative;
  margin-bottom: 20px;
}

.search-box i:first-child {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.search-box i:last-child {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

#searchInput {
  width: -webkit-fill-available;
  padding: 16px 50px 16px 45px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
}

#searchInput::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#searchInput:focus {
  outline: none;
  border-color: #ef7d00;
  box-shadow: 0 0 0 3px rgba(239, 125, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

#searchInput:focus + .search-box i {
  color: #ef7d00;
}

.clear-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #999;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-btn:hover {
  background: rgba(239, 125, 0, 0.2);
  color: #ef7d00;
  transform: translateY(-50%) scale(1.1);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  border-color: #ef7d00;
  color: #ef7d00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 125, 0, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ef7d00, #ff9a2c);
  color: white;
  border-color: #ef7d00;
  box-shadow: 0 5px 20px rgba(239, 125, 0, 0.4);
  transform: translateY(-2px);
}

.filter-btn:focus {
  outline: none;
}

.streams-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

@media (max-width: 1024px) {
  .streams-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.stream-column {
  background: rgba(63, 56, 55, 0.95);
  padding: 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stream-column:hover {
  transform: translateY(-5px);
}

.stream-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #ef7d00, #ff9a2c);
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.stream-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.stream-header h2 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.stream-header .stream-number {
  font-size: 0.9rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.presentation-card {
  background: rgba(32, 25, 24, 0.95);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.presentation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef7d00, #ff9a2c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.presentation-card:hover::before {
  transform: scaleX(1);
}

.presentation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(239, 125, 0, 0.2);
  border-color: rgba(239, 125, 0, 0.3);
}

.card-time {
  display: inline-block;
  background: linear-gradient(135deg, #ef7d00, #ff9a2c);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
  box-shadow: 0 3px 10px rgba(239, 125, 0, 0.3);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.presentation-card:hover .card-title {
  color: #ff9a2c;
}

.card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-speaker {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.card-speaker i {
  margin-right: 8px;
  color: #ef7d00;
  transition: transform 0.3s ease;
}

.presentation-card:hover .card-speaker i {
  transform: scale(1.2);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-direction: column;
  gap: 10px;
}

.teams-link {
  background: linear-gradient(135deg, #ef7d00, #ff9a2c);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(239, 125, 0, 0.3);
}

.teams-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.teams-link:hover::before {
  left: 100%;
}

.teams-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 125, 0, 0.4);
  color: white;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.7;
  color: #ef7d00;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .streams-container {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 10px 18px;
  }

  .presentation-card {
    padding: 18px;
  }

  .card-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .search-container {
    padding: 20px;
    border-radius: 16px;
  }

  .header h1 {
    font-size: 1.8rem;
  }
}/* End custom CSS */