/* Audio Generator Guest User Styles */
/* Enhanced styles for non-logged-in users */

.latest-upscales {
  animation: fadeIn 0.6s ease-out;
}

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

#load-more-audio {
  transition: all 0.3s ease;
}

#load-more-audio:hover {
  background-color: #f5f5f5;
}

@keyframes fadeInDelayed {
  to {
    opacity: 1;
  }
}

.guest-view .section-divider {
  margin: 60px 0 40px;
  text-align: left;
  position: relative;
  padding-top: 20px;
}

.guest-view .section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #eba123 0%, #f5b94a 100%);
  border-radius: 2px;
}

.guest-view .section-divider .h2 {
  margin-bottom: 16px !important;
}

.guest-view .section-divider p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
}

/* Guest view enhanced card styles */
.guest-view .card {
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(249,249,251,.95) 100%);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.06);
  height: 100%;
  min-height: 260px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.guest-view .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #eba123 0%, #f5b94a 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.guest-view .card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.06);
  border-color: rgba(235, 161, 35, 0.2);
}
.guest-view .card:hover::before {
  opacity: 1;
}
.guest-view .card-sm {
  min-height: auto !important;
  padding: 20px;
}
.guest-view .card-sm h3 {
  font-size: 1.1em;
  margin-bottom: 12px !important;
}
.guest-view .card .icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(235, 161, 35, 0.12) 0%, rgba(235, 161, 35, 0.18) 100%);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4em;
  transition: all 0.3s ease;
}
.guest-view .card:hover .icon {
  background: linear-gradient(135deg, rgba(235, 161, 35, 0.18) 0%, rgba(235, 161, 35, 0.25) 100%);
}
.guest-view .card h3 {
  font-weight: 600;
  margin-top: 0 !important;
  font-size: 1.3em;
  color: #2c2c2c;
  margin-bottom: 14px !important;
}
.guest-view .card p {
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.guest-view .card ul {
  font-size: 104% !important;
  padding-left: 20px;
  color: #666;
}
.guest-view .card ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Guest view welcome section styles */
.guest-view .welcome-section {
  padding: 20px 0;
}

.guest-view .welcome-section .h1 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 20px 0 30px 0 !important;
}

.guest-view .welcome-section > p {
  font-size: 1.15em;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.guest-view .welcome-section > p:first-of-type {
  margin-bottom: 6px;
}

.guest-view .welcome-section > p:last-of-type {
  margin-bottom: 40px;
}

.guest-view .welcome-section .row {
  margin-top: 40px;
  margin-bottom: 40px;
}

.guest-view .welcome-section .h2 {
  font-size: 2em;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px !important;
}

/* Responsive styles for guest view */
@media (max-width: 991px) {
  .guest-view .row {
    gap: 16px;
  }
  .guest-view .card {
    padding: 24px 20px;
    min-height: auto;
  }
  .guest-view .card .icon {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  .guest-view .card h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .guest-view .card {
    padding: 20px;
    border-radius: 16px;
  }
  .guest-view .card h3 {
    font-size: 1.15em;
  }
  .guest-view .card p, .guest-view .card ul {
    font-size: 0.95em;
  }
  .guest-view .h1 {
    font-size: 1.8em !important;
    line-height: 1.3;
  }
  .guest-view .h2 {
    font-size: 1.5em !important;
  }
}

@media (max-width: 575px) {
  .guest-view .card-sm {
    padding: 16px;
  }
  .guest-view .card-sm h3 {
    font-size: 1em;
  }
  .guest-view .card-sm ul {
    font-size: 0.9em !important;
    padding-left: 16px;
  }
}

@media (max-width: 399px) {
  .guest-view .card {
    padding: 18px 16px;
  }
  .guest-view .card .icon {
    width: 36px;
    height: 36px;
    font-size: 1.1em;
    margin-bottom: 16px;
  }
}