.whisk-interface,
.image-interface,
.music-interface {
  opacity: 0;
  animation: toolFadeIn 0.6s ease-out forwards;
}

@keyframes toolFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

html {
  overflow: unset !important;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  font-family: 'Google Sans Text', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  background-color: black;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: currentColor;
  background-color: transparent;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.header {
  pointer-events: none;
  align-items: center;
  color: black;
  display: flex;
  flex-direction: column;
  min-height: 4rem;
  height: 4rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

@media (min-width: 768px) {
  .header {
    min-height: 5rem;
    height: 5rem;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 2rem 0 1.5rem;
  }
}

.header-left, .header-right {
  pointer-events: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.main-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.75rem;
  color: black;
  margin: 0;
  padding: 0.5rem 0.75rem 0.5rem 0;
}

.main-title-italic {
  font-family: 'Fraunces', serif;
  font-size: 2.625rem;
  font-style: italic;
  font-weight: 300;
  line-height: 2.625rem;
  letter-spacing: -1.26px;
}

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

.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 0;
  }
}

.main-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .main-container {
    gap: 2rem;
    max-width: 112.5rem;
  }
}

.hero-section {
  padding: calc(4rem + 2rem) 1rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: calc(5rem + 1rem) 2rem 0;
  }
}

.hero-title {
  color: hsla(0, 0%, 100%, 0.5);
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.75rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5625rem;
    line-height: 4rem;
  }
}

.hero-title-italic {
  font-family: 'Fraunces', serif;
  font-size: 2.625rem;
  font-style: italic;
  font-weight: 300;
  line-height: 2.625rem;
  letter-spacing: -1.26px;
  color: black;
}

@media (min-width: 768px) {
  .hero-title-italic {
    font-size: 4rem;
  }
}

.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  padding-top: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    height: auto;
  }
}



.panel-animation {
  opacity: 1;
  transition: opacity 0.2s ease;
  position: relative;
  flex: 1;
  container-type: size;
}

@media (max-width: 768px) {
  .panel-animation {
    min-height: 24rem;
  }
}

@media (min-width: 768px) and (max-height: 54rem) {
  .panel-animation {
    min-height: 8rem;
  }
}

.lottie-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition: transform 0.3s ease;
}

.panel:hover .lottie-container {
  transform: scale(1.05);
}

.panel-content {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
  z-index: 100;
  width: 100%;
  background: transparent;
  text-align: center;
  transform: translateY(calc(-20% - 40px));
}

@media (min-width: 768px) {
  .panel-content {
    justify-content: center;
    transform: translateY(calc(-25% - 40px));
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .panel-content {
    padding: 1.5rem 0.75rem;
  }
}



.footer {
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  margin-top: 2rem;
  position: relative;
}

.footer .nav-logos {
  position: fixed;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
  z-index: 1000;
}

.footer .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.3);
  border: none;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  color: rgba(139, 92, 246, 0.9);
  text-decoration: none;
}

.footer .nav-icon:hover {
  background: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
  color: rgba(167, 139, 250, 1);
}

.footer .nav-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.footer .twitter-icon svg {
  color: #8B5CF6 !important;
}

.footer .twitter-icon svg path {
  fill: #8B5CF6 !important;
}

.footer .twitter-icon:hover svg {
  color: #A78BFA !important;
}

.footer .twitter-icon:hover svg path {
  fill: #A78BFA !important;
}



.description-section {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 40px;
}

.description-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.description-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 34px 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  max-width: 50%;
  transition: all 0.3s ease;
}

.description-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.description-block.purple {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.description-block.red {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
}

.description-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: white;
}

.description-block.purple h4 {
  color: #A78BFA;
}

.description-block.red h4 {
  color: #F87171;
}

.description-block p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .description-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .description-block {
    max-width: 100%;
  }
}



.footer-container {
  max-width: 112.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

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

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.twitter-icon svg {
  color: white;
}

.twitter-icon img {
  transform: translateY(-15px);
  opacity: 0;
  animation: logoFadeIn 1s ease-in-out 0.5s forwards;
  filter: brightness(0) saturate(100%) invert(57%) sepia(99%) saturate(1357%) hue-rotate(15deg) brightness(102%) contrast(101%);
  transition: all 0.3s ease;
}

.whisk-interface .top-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  pointer-events: none;
}

.whisk-interface .nav-logos {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
  z-index: 1110;
}

.whisk-interface .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.whisk-interface .nav-icon:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 1);
}

.whisk-interface .nav-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.whisk-interface .twitter-icon svg {
  color: #ffffff !important;
}

.whisk-interface .twitter-icon svg path {
  fill: #ffffff !important;
}

.whisk-interface .twitter-icon:hover svg {
  color: #ffffff !important;
}

.whisk-interface .twitter-icon:hover svg path {
  fill: #ffffff !important;
}



@media (max-width: 768px) {
  .whisk-interface .nav-logos {
    top: 20px;
    left: 20px;
    gap: 12px;
  }
  
  .whisk-interface .nav-icon {
    width: 40px;
    height: 40px;
  }
  
  .whisk-interface .nav-icon img {
    width: 24px;
    height: 24px;
  }
  

}

.twitter-icon:hover img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(1200%) hue-rotate(15deg) brightness(110%) contrast(101%);
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
    filter: brightness(0) saturate(100%) invert(57%) sepia(99%) saturate(1357%) hue-rotate(15deg) brightness(102%) contrast(101%);
  }
  to {
    opacity: 1;
    transform: translateY(-15px);
    filter: brightness(0) saturate(100%) invert(57%) sepia(99%) saturate(1357%) hue-rotate(15deg) brightness(102%) contrast(101%);
  }
}

.panel-whisk .panel-title {
  color: hsla(48, 100%, 13%);
}

.panel-imagefx .panel-title {
  color: hsla(234, 34%, 22%);
}

.panel-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.panel-whisk .panel-description {
  color: hsla(48, 100%, 23%);
}

.panel-imagefx .panel-description {
  color: hsla(233, 32%, 37%);
}

.panel-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .panel-button-container {
    align-items: center;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 54rem) {
  .panel-button-container {
    padding-bottom: 5.25rem;
  }
}

.panel-whisk .panel-button {
  background-color: hsla(48, 100%, 13%);
  color: hsla(48, 100%, 50%);
}

.panel-whisk .panel-button:hover {
  background-color: transparent;
  box-shadow: 0 0 0 1px hsla(48, 100%, 13%);
  color: hsla(48, 100%, 13%);
  transform: translateY(-2px) scale(1.02);
}

.panel-imagefx .panel-button {
  background-color: hsla(234, 34%, 22%);
  color: hsla(234, 100%, 78%);
}

.panel-imagefx .panel-button:hover {
  background-color: transparent;
  box-shadow: 0 0 0 1px hsla(234, 34%, 22%);
  color: hsla(234, 34%, 22%);
  transform: translateY(-2px) scale(1.02);
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background-color: transparent;
  color: hsla(213.3, 7.3%, 35%);
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .footer {
    font-size: 1.125rem;
  }
}

.tool-container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tool-container {
    padding: 3rem 2rem;
  }
}

.tool-header {
  margin-bottom: 2rem;
}

.tool-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
}

.tool-content {
  background-color: hsla(0, 0%, 10%, 1);
  border-radius: 1rem;
  overflow: hidden;
}

.tool-interface {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-placeholder {
  padding: 2rem;
  text-align: center;
}

.tool-message {
  max-width: 500px;
  margin: 0 auto;
}

.tool-message h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.tool-message p {
  margin-bottom: 2rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.back-button {
  display: inline-block;
  font-family: 'Google Sans Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 1.25rem;
  background-color: hsla(234, 34%, 22%);
  color: hsla(234, 100%, 78%);
  transition: background-color 0.2s ease;
}

.back-button:hover {
  background-color: hsla(234, 34%, 30%);
}

.whisk-interface {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
  padding: 2rem;
  padding-bottom: 4rem;
  background-color: #000;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.whisk-interface::-webkit-scrollbar {
  display: none;
}



.whisk-progress-container {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  margin-top: 60px;
}

.whisk-progress-container.show {
  opacity: 1;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: calc(100% - 340px);
  padding: 100px 32px 150px 32px;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.videos-grid::-webkit-scrollbar {
  display: none;
}

.video-card {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.5s ease forwards;
  width: 100%;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-card-content {
  padding: 8px 12px 10px 12px;
}

.video-card-video {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  display: block;
  object-fit: cover;
}

.video-card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0px;
  min-height: 24px;
}

.video-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 80px;
  flex-shrink: 0;
}

.video-card-tags {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.video-download-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
}

.video-download-btn:hover {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.video-download-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}



.video-card-prompt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1;
  text-align: left;
}

.video-card-model {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.9);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2px 5px;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 500;
  min-height: 18px;
  display: flex;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideLeft {
  from { 
    transform: translateX(0);
  }
  to { 
    transform: translateX(-20px);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.progress-stroke {
  animation: progress-animation 2s ease-in-out infinite;
}

@keyframes progress-animation {
  0% { stroke-dashoffset: 314.16; }
  50% { stroke-dashoffset: 157.08; }
  100% { stroke-dashoffset: 0; }
}

.loading-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #3B82F6;
  border-radius: 50%;
  opacity: 0.6;
}

.dot:nth-child(1) {
  animation: pulse 1.2s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation: pulse 1.2s ease-in-out 0.4s infinite;
}

.dot:nth-child(3) {
  animation: pulse 1.2s ease-in-out 0.8s infinite;
}

.whisk-input-panel {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

@media (max-width: 768px) {
  .whisk-interface {
    padding: 16px;
  }
  
  .whisk-content {
    gap: 16px;
  }
  
  .videos-grid {
    padding: 70px 20px 140px 20px;
    max-width: 100%;
    gap: 20px;
  }
  
  .whisk-input-panel {
    bottom: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    max-width: none;
    width: auto;
  }
}

.whisk-prompt-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whisk-input-panel-wrapper {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whisk-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whisk-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whisk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.whisk-mode-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.whisk-mode-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 16px;
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.whisk-mode-tag:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.whisk-mode-tag svg {
  width: 12px;
  height: 12px;
}

.whisk-mode-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background-color: rgba(26, 26, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 10000;
  min-width: 200px;
  pointer-events: none;
}

.whisk-mode-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mode-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  pointer-events: auto;
  user-select: none;
}

.mode-option:hover,
.mode-option.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.mode-option svg {
  width: 16px;
  height: 16px;
}

.mode-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.dropdown-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.duration-container {
  padding: 12px 16px;
}

.duration-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.duration-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  font-size: 14px;
}

.duration-select option {
  background-color: #1a1a1a;
  color: white;
}

.selected-mode-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: white;
}

.tag-close {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 2px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.tag-close:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.tag-close svg {
  width: 12px;
  height: 12px;
}

.whisk-settings-container {
  position: relative;
}

.whisk-settings-btn {
  padding: 6px;
  background: none;
  border: none;
  color: #8B5CF6;
  cursor: pointer;
  transition: all 0.2s ease;
}

.whisk-settings-btn:hover {
  color: #A78BFA;
}

.whisk-settings-btn svg {
  width: 16px;
  height: 16px;
}

.whisk-settings-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: linear-gradient(135deg, rgba(28, 28, 30, 0.95), rgba(18, 18, 20, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  min-width: 260px;
  pointer-events: none;
}

.whisk-settings-panel.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 20px 20px 0 0;
}

.settings-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

.settings-close {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-close:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.settings-close svg {
  width: 14px;
  height: 14px;
}

.settings-content {
  padding: 20px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.setting-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setting-label {
  font-size: 13px;
  color: #8B5CF6;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: 11px;
}

.setting-select {
  background: transparent;
  border: 1px solid #8B5CF6;
  border-radius: 12px;
  padding: 12px 16px;
  color: #8B5CF6;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
}

.setting-select:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
}

.setting-select:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.setting-select option {
  background: #1a1a1a;
  color: white;
}

.setting-select option:checked {
  background-color: white;
  color: black;
}

.whisk-input-section {
  position: relative;
}

.whisk-image-upload {
  margin-bottom: 16px;
}

.image-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.image-upload-area:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.image-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.image-preview img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.upload-text {
  font-size: 14px;
  color: #ffffff;
}

.whisk-prompt-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  font-family: inherit;
  padding: 0;
}

.whisk-prompt-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.whisk-submit-btn {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.whisk-submit-btn:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(2px);
}

.whisk-submit-btn svg {
  width: 16px;
  height: 16px;
}



.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.progress-info {
  max-width: 300px;
}

.progress-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0 0;
  font-weight: 500;
}


.whisk-interface {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: calc(100vh - 80px);
  box-sizing: border-box;
  position: relative;
}

.whisk-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  position: relative;
}

.main-content-area {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.main-content-area.empty-state::before {
  content: "Your videos will appear in this area";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-align: center;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.settings-panel-right {
  position: fixed !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 320px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(20, 20, 20, 0.95)) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  height: fit-content !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1), 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  z-index: 1000000 !important;
  transition: all 0.3s ease !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.settings-panel-content {
  width: 100%;
  transition: all 0.3s ease;
}

.settings-sections {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  transition: all 0.3s ease;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  opacity: 1;
  max-height: 180px;
  transform: translateY(0);
  margin-bottom: 10px;
}

.settings-section.hiding {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  gap: 0;
  transform: translateY(-5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.settings-section.showing {
  opacity: 1;
  max-height: 180px;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.settings-section h4 {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mode-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mode-option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}

.mode-option-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.mode-option-btn.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.mode-option-btn svg {
  flex-shrink: 0;
}

.settings-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A78BFA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.settings-select:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.settings-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.settings-select option {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 12px 16px;
}

.settings-section .whisk-image-upload {
  width: 100%;
}

.settings-section .image-upload-area {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.settings-section .image-upload-area:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.image-upload-container {
  width: 100%;
}

.image-upload-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.image-upload-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.settings-section .image-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.settings-section .image-preview:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.settings-section .image-preview img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: block;
}

.settings-section .image-preview.has-image {
  padding: 16px;
  gap: 10px;
  min-height: 140px;
  justify-content: center;
}

.settings-section .image-preview.has-image .upload-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 4px;
}

.settings-section .upload-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .settings-panel-right {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 300px !important;
    margin-bottom: 0 !important;
    order: 0 !important;
    z-index: 1000000 !important;
  }
  
  .main-content-area {
    order: 1;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 24px 140px 24px;
    gap: 24px;
  }
  
  .settings-sections {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .settings-section {
    flex: 1;
    min-width: 150px;
  }
  
  .whisk-input-panel {
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
    width: auto;
  }
}


.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  color: black;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  max-width: 400px;
  min-width: 300px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-message {
  flex: 1;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .notification {
    top: 80px;
    right: 16px;
    left: 16px;
    max-width: none;
    min-width: auto;
  }
}

.reset-data-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: background-color 0.2s ease;
}

.reset-data-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.reset-data-btn i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .reset-data-btn span {
    display: none;
  }
  
  .reset-data-btn {
    padding: 6px;
  }
}

.custom-select {
  position: relative;
  width: 100%;
  margin-bottom: 0px !important;
  z-index: 1;
}

.custom-select-header {
  background-color: #0f0f0f;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-height: 40px;
  position: relative;
}

.custom-select-header:hover {
  border-color: #555;
  background-color: #1a1a1a;
}

.custom-select.open {
  z-index: 99999;
}

.custom-select.open .custom-select-header {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: #1a1a1a;
  z-index: 99999;
}

.custom-select-value {
  color: white;
  flex: 1;
  text-align: center;
}

.custom-select-arrow {
  transition: transform 0.2s ease;
  color: #888;
  margin-left: 8px;
  flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(-90deg);
  color: rgba(255, 255, 255, 0.9);
}

.custom-select-options {
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 8px;
  min-width: 200px;
  width: max-content;
  background-color: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  z-index: 999999;
  max-height: 250px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.custom-select-option {
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #222;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background-color: #2a2a2a;
  color: white;
}

.custom-select-option.active {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  font-weight: 600;
}

.custom-select-option.active:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.custom-select-options::-webkit-scrollbar {
  display: none;
}

.custom-select-options {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-select:not(.open) {
  z-index: 1;
}

.custom-select:not(.open) .custom-select-header {
  z-index: 1;
}

.settings-sections {
  position: relative;
  z-index: 0;
}

.settings-section {
  position: relative;
  z-index: 1;
  margin-bottom: 0px !important;
}

.whisk-interface .prompt-section-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc((100% - 360px) / 1.5);
  max-width: 550px;
  z-index: 100;
}

.whisk-interface .prompt-section {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: none;
  box-shadow: none;
}

.whisk-interface .prompt-input-wrapper {
  width: 100%;
}

.whisk-interface .whisk-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.2s ease;
  height: 90px;
}

.whisk-interface .whisk-input-row:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.whisk-interface .whisk-input-row:focus-within {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

@media (max-width: 1200px) {
  .whisk-interface .prompt-section-container {
    width: calc((100% - 40px) / 1.5);
    left: 20px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .whisk-interface .prompt-section-container {
    bottom: 10px;
    width: calc((100% - 20px) / 1.3);
    left: 10px;
  }
  
  .whisk-interface .prompt-section {
    padding: 16px;
  }
  
  .whisk-interface .whisk-input-row {
    padding: 20px 16px;
    gap: 12px;
    height: 80px;
  }
}

.model-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #F59E0B;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.model-warning .warning-icon {
  font-size: 14px;
  color: #F59E0B;
}

.custom-select-option.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  color: #666 !important;
  background-color: #1a1a1a !important;
}

.video-loading-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.video-loading-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: loading-shimmer 2s infinite;
}

@keyframes loading-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.loading-percentage {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  z-index: 1;
  position: relative;
}

.loading-status {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  z-index: 1;
  position: relative;
}

.video-error-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.error-message {
  text-align: center;
  color: #ff6b6b;
}

.error-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.error-message p {
  font-size: 16px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.error-message button {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 12px;
  transition: background-color 0.2s ease;
}

.error-message button:hover {
  background: #ff5252;
}

.loading-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 16px;
  z-index: 1;
  position: relative;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007AFF, #00D4FF);
  transition: width 0.3s ease;
  border-radius: 2px;
}


.video-card.loading {
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-card.loading .video-card-content {
  position: relative;
}

.video-card.loading::after {
  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: loading-pulse 2s infinite;
  pointer-events: none;
  border-radius: 12px;
}

@keyframes loading-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .loading-percentage {
    font-size: 20px;
  }
  
  .loading-status {
    font-size: 12px;
  }
  
  .loading-progress-bar {
    width: 160px;
  }
}


