.live-stream-section {
  width: 100%;
  max-width: 896px;
  padding: 50px 15px;
  text-align: center;
  box-sizing: border-box;
    margin: 0 auto;}
.videoComponent{
    height:675px;
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
}

/* Header with Dividers */
.header-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.video-divider-line {
  height: 1px;
  flex-grow: 1;
  max-width: 200px;
  background-color: #979797;
}

.label-caps {
  /* font-family: sans-serif; */
  letter-spacing: 0.25em;
  font-weight: 500;
  font-size: 0.75rem;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Main Title */
.main-title {
  font-size: 28px !important;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.description-container {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.description-text {
  line-height: 1.6;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  margin: 0;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 3rem;
  }

  .description-text {
    font-size: 1.125rem;
    font-style: normal;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 3.75rem;
  }
}

.live-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(233, 193, 118, 0.2);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* Background */
.card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.blur-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(
    180deg,
    rgba(14, 19, 31, 0.4) 0%,
    rgba(14, 19, 31, 0.7) 100%
  );
}

/* Content */
.card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  justify-content: space-between;
}

/* Header */
.card-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(233, 193, 118, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 19, 31, 0.7);
  flex-shrink: 0;
}

.title-group h2 {
  /* font-family: "EB Garamond", serif; */
  font-size: 1.25rem;
  color: #e9c176;
  line-height: 1.2;
  margin-bottom: 0.125rem;
  font-weight: 500;
}

.title-group p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(222, 226, 243, 0.8);
  font-weight: 400;
}

/* Play Area */
.play-area {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.play-btn {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  border: none;
  background: #ff0000;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  transition:
    transform 0.2s cubic-bezier(0.2, 0, 0.2, 1),
    background-color 0.2s;
}

.play-btn:hover {
  transform: scale(1.08);
  background-color: #cc0000;
}

.play-btn:active {
  transform: scale(0.95);
}

.play-icon {
  font-size: 2.5rem;
  color: #ffffff;
  font-variation-settings: "FILL" 1;
  margin-left: 4px;
}

/* Brand Marker */
.brand-marker {
  position: absolute;
  bottom: 4.5rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}

.numeral-25 {
  /* font-family: "EB Garamond", serif; */
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    180deg,
    #e9c176 30%,
    rgba(233, 193, 118, 0.5) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

.brand-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #e9c176;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -0.25rem;
}

/* Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(233, 193, 118, 0.1);
}

.actions {
  display: flex;
  gap: 1rem;
}

.icon-action {
  background: none;
  border: none;
  color: #dee2f3;
  opacity: 0.7;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.icon-action:hover {
  opacity: 1;
  color: #e9c176;
}

.icon-action span {
  font-size: 1.25rem;
}

.watch-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(233, 193, 118, 0.2);
  color: #e9c176;
  padding: 0.4rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s;
}

.watch-btn:hover {
  background: rgba(233, 193, 118, 0.1);
}

/* LIVE Badge */
.live-status {
  margin-left: auto;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Desktop & Tablet */
@media (min-width: 640px) {
  .title-group h2 {
    font-size: 1.5rem;
  }

  .title-group p {
    font-size: 0.75rem;
  }

  .numeral-25 {
    font-size: 4rem;
  }

  .brand-label {
    font-size: 0.7rem;
  }

  .play-btn {
    width: 5.5rem;
    height: 5.5rem;
  }

  .play-icon {
    font-size: 3rem;
  }
}