.VideoSummary_container__g75Mf {
  min-height: 100vh;
  margin-top: 2rem;
  background-color: #0e0c15;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(to bottom,
        rgba(14, 12, 21, 1) 0%,
        rgba(14, 12, 21, 0.8) 20%,
        rgba(14, 12, 21, 0) 50%,
        rgba(14, 12, 21, 0.8) 80%,
        rgba(14, 12, 21, 1) 100%),
    linear-gradient(to right, #1a1a1a 1px, transparent 1px),
    linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.VideoSummary_container__g75Mf::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  background: linear-gradient(45deg, 
      rgba(110, 0, 255, 0.3), 
      rgba(255, 0, 0, 0.3), 
      rgba(110, 0, 255, 0.3));
  filter: blur(80px);
  opacity: 0.3;
  animation: VideoSummary_gradientAnimation__AfFmT 10s ease infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes VideoSummary_gradientAnimation__AfFmT {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.VideoSummary_badge__zyT83 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1a1a1a;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.VideoSummary_badgeText__UxcNM {
  color: #9ca3af;
  font-size: 0.875rem;
  font-family: 'BlackFont', sans-serif;
}

.VideoSummary_title__v3MEl {
  text-align: center;
  max-width: 56rem;
  margin-bottom: 1.5rem;
}

.VideoSummary_heading__Q4ObR {
  font-family: 'BlackFont', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(to right, white, #afafaf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .VideoSummary_heading__Q4ObR {
    font-size: 3.75rem;
  }
}

.VideoSummary_highlight__ifYkl {
  background: linear-gradient(45deg, rgba(110, 0, 255, 0.6), rgba(255, 0, 0, 0.6));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .VideoSummary_highlight__ifYkl {
    padding: 0.25rem 1rem;
  }
}

.VideoSummary_subtitle__Yj8d0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  color: #b0cdef;
  font-size: 1.125rem;
  font-family: 'BlackFont', sans-serif;
}

.VideoSummary_inputContainer__IuVqQ {
  width: 100%;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.VideoSummary_inputWrapper__UPVRc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.VideoSummary_inputGroup__8hmMc {
  position: relative;
  width: 100%;
}

.VideoSummary_linkIcon__cjkNS {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #9ca3af;
  pointer-events: none;
}

.VideoSummary_input__3R_qh {
  width: 100%;
  padding: 1rem 1.5rem 1rem 48px;
  border-radius: 0.75rem;
  background-color: #000000;
  border: 1px solid #374151;
  color: white;
  font-size: 1.125rem;
  transition: border-color 0.2s;
}

.VideoSummary_input__3R_qh:focus {
  outline: none;
  border-color: #7c3aed;
}

.VideoSummary_button__PDNfm {
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 10px;
  color: white;
  background-color: black;
  padding: 15px 40px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: 'BlackFont', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.VideoSummary_button__PDNfm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(to right, #3187C4, #DB51DD);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.VideoSummary_button__PDNfm:hover {
  background-color: #1a1a1a;
  color: white;
  box-shadow: 0 0 10px rgba(49, 135, 196, 0.3),
              0 0 20px rgba(219, 81, 221, 0.3),
              0 0 30px rgba(49, 135, 196, 0.2),
              0 0 40px rgba(219, 81, 221, 0.2);
  animation: VideoSummary_bounce__VdPJt 0.6s ease;
}

@keyframes VideoSummary_bounce__VdPJt {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 768px) {
  .VideoSummary_inputContainer__IuVqQ {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .VideoSummary_inputWrapper__UPVRc {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .VideoSummary_button__PDNfm {
    width: auto;
    margin-top: 0;
  }
}

@keyframes VideoSummary_pulse__GLl__ {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.VideoSummary_summarySection__3lO68 {
  width: 100%;
  max-width: 42rem;
  margin-top: 2rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2),
              inset 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.VideoSummary_summarySection__3lO68:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3),
              inset 0 0 30px rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.VideoSummary_summaryHeader__OzWcF {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, 
    rgba(176, 205, 239, 0.05) 0%,
    rgba(176, 205, 239, 0.02) 100%
  );
  transition: all 0.3s ease;
}

.VideoSummary_summaryHeader__OzWcF:hover {
  background: linear-gradient(90deg, 
    rgba(176, 205, 239, 0.08) 0%,
    rgba(176, 205, 239, 0.03) 100%
  );
}

.VideoSummary_summaryHeader__OzWcF h2 {
  color: #b0cdef;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'BlackFont', sans-serif;
  text-shadow: 0 0 10px rgba(176, 205, 239, 0.3);
}

.VideoSummary_timeStamp__UDGtq {
  color: #9ca3af;
  font-size: 0.875rem;
  font-family: monospace;
  padding: 0.25rem 0.75rem;
  background-color: rgba(49, 135, 196, 0.15);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(49, 135, 196, 0.1);
}

.VideoSummary_summaryHeader__OzWcF:hover .VideoSummary_timeStamp__UDGtq {
  background-color: rgba(49, 135, 196, 0.25);
  color: #b0cdef;
  border-color: rgba(49, 135, 196, 0.2);
  box-shadow: 0 0 10px rgba(49, 135, 196, 0.1);
}

.VideoSummary_summaryContent__C6dBF {
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 2px solid rgba(176, 205, 239, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.VideoSummary_summaryContent__C6dBF::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(176, 205, 239, 0.1) 0%,
    rgba(176, 205, 239, 0.4) 50%,
    rgba(176, 205, 239, 0.1) 100%
  );
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.VideoSummary_summaryContent__C6dBF:hover::before {
  transform: translateY(0);
}

.VideoSummary_summaryContent__C6dBF:hover {
  background: linear-gradient(
    90deg,
    rgba(176, 205, 239, 0.05) 0%,
    transparent 100%
  );
}

.VideoSummary_summaryContent__C6dBF p {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

.VideoSummary_summaryContent__C6dBF:hover p {
  color: #b0cdef;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .VideoSummary_summarySection__3lO68 {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .VideoSummary_summaryHeader__OzWcF h2 {
    font-size: 1.125rem;
  }

  .VideoSummary_summaryContent__C6dBF p {
    font-size: 0.9375rem;
  }

  .VideoSummary_inputContainer__IuVqQ {
    flex-direction: column;
    align-items: stretch;
  }

  .VideoSummary_inputWrapper__UPVRc {
    flex-direction: column;
    gap: 1rem;
  }

  .VideoSummary_button__PDNfm {
    width: 100%;
    margin-top: 1rem;
  }
}

.VideoSummary_error__l9Tec {
  width: 100%;
  max-width: 42rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #ef4444;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.VideoSummary_loading__Lxllb {
  width: 100%;
  max-width: 42rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(49, 135, 196, 0.1);
  border: 1px solid rgba(49, 135, 196, 0.2);
  color: #b0cdef;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.VideoSummary_loading__Lxllb::before {
  content: '';
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(49, 135, 196, 0.3);
  border-top-color: #b0cdef;
  border-radius: 50%;
  animation: VideoSummary_spin__un8UB 1s linear infinite;
}

@keyframes VideoSummary_spin__un8UB {
  to {
    transform: rotate(360deg);
  }
}

.VideoSummary_button__PDNfm:disabled {
  opacity: 0.7;
  cursor: not-allowed;
} 
