/* Livaaz Static Website Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f7f5f2;
  color: #1e1919;
}

/* Logo Styles */
.livaaz-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.livaaz-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  position: relative;
}

.play-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d8b7e 0%, #3aa593 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(45, 139, 126, 0.3);
}

.play-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d8b7e 0%, #ff6b3d 100%);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.play-icon {
  width: 22px;
  height: 22px;
  color: white;
  fill: white;
  margin-left: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-brand {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #2d8b7e 0%, #1a6b5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: #ff6b3d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.livaaz-logo.small .play-circle {
  width: 36px;
  height: 36px;
}

.livaaz-logo.small .play-icon {
  width: 16px;
  height: 16px;
}

.livaaz-logo.small .logo-brand {
  font-size: 20px;
}

.livaaz-logo.small .logo-tagline {
  font-size: 8px;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(97, 82, 90, 0.1);
  padding: 1rem 0;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-section {
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  color: #1e1919;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2d8b7e;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2d8b7e;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, #f7f5f2 0%, #e8f5f3 100%);
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(45, 139, 126, 0.1);
  color: #2d8b7e;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(45, 139, 126, 0.2);
}

.hero-title {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.1;
  font-weight: 700;
  color: #1e1919;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #ff6b3d;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #736c64;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary-cta, .btn-secondary-cta {
  padding: 1.5rem 2.5rem;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-cta {
  background-color: #2d8b7e;
  color: white;
}

.btn-primary-cta:hover {
  background-color: #257366;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 139, 126, 0.4);
}

.btn-secondary-cta {
  border: 2px solid #2d8b7e;
  color: #2d8b7e;
  background-color: white;
}

.btn-secondary-cta:hover {
  background-color: #2d8b7e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 139, 126, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(97, 82, 90, 0.15);
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #2d8b7e;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 14px;
  color: #736c64;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
  transform: scale(1.02) rotate(-1deg);
}

.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-overlay-badge {
  position: absolute;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.live-badge {
  top: 1.5rem;
  left: 1.5rem;
  background-color: rgba(255, 107, 61, 0.95);
  color: white;
}

.live-indicator {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.viewers-badge {
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: rgba(30, 25, 25, 0.85);
  color: white;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #1e1919;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.inline-icon {
  color: #2d8b7e;
}

.section-subtitle {
  font-size: 18px;
  color: #736c64;
  line-height: 1.6;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  background-color: #f7f5f2;
  border: 1px solid rgba(97, 82, 90, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 139, 126, 0.15);
  border-color: #2d8b7e;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2d8b7e 0%, #3aa593 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e1919;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 15px;
  color: #736c64;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-item {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff6b3d 0%, #ff8c5d 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 107, 61, 0.3);
  transition: transform 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.15);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e1919;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 15px;
  color: #736c64;
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  color: #ff6b3d;
  width: 32px;
  height: 32px;
}

/* Trending Section */
.trending-section {
  padding: 6rem 2rem;
  background-color: white;
}

.trending-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin-bottom: 3rem;
}

.btn-view-all {
  padding: 0.75rem 1.5rem;
  background: white;
  color: #1e1919;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  border-color: #2d8b7e;
  color: #2d8b7e;
}

.live-shows-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.live-show-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
  border: 1px solid rgba(97, 82, 90, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.live-show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.show-thumbnail {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.show-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.live-show-card:hover .show-thumbnail img {
  transform: scale(1.1);
}

.live-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 107, 61, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(45, 139, 126, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
}

.show-info {
  padding: 1.5rem;
}

.show-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e1919;
  margin-bottom: 0.5rem;
}

.show-creator {
  font-size: 14px;
  color: #736c64;
  margin-bottom: 1rem;
}

.show-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.viewers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: #736c64;
  font-weight: 600;
}

.category-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background-color: #f3f4f6;
  border-radius: 12px;
}

/* Join Section */
.join-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2d8b7e 0%, #257366 100%);
  color: white;
}

.join-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.join-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 1rem;
}

.join-subtitle {
  font-size: 18px;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.join-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.join-card {
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.join-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.join-card-content {
  text-align: center;
}

.join-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #2d8b7e;
}

.creator-card .join-icon {
  color: #ff6b3d;
}

.join-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e1919;
  margin-bottom: 1rem;
}

.join-card-description {
  font-size: 15px;
  color: #736c64;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.join-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shopper-btn {
  background-color: #2d8b7e;
  color: white;
}

.shopper-btn:hover {
  background-color: #257366;
  transform: translateY(-2px);
}

.creator-btn {
  background-color: #ff6b3d;
  color: white;
}

.creator-btn:hover {
  background-color: #e65c34;
  transform: translateY(-2px);
}

/* Download Section */
.download-section {
  padding: 6rem 2rem;
  background-color: #1e1919;
  color: white;
}

.download-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.download-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.download-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-store-btn,
.play-store-btn {
  background-color: white;
  color: #1e1919;
  padding: 1.25rem 2rem;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
  background-color: #2d8b7e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 139, 126, 0.4);
}

.app-preview {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Footer */
.site-footer {
  padding: 4rem 2rem 2rem;
  background-color: #1a1918;
  color: #bbb5ae;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-tagline {
  font-size: 14px;
  color: #bbb5ae;
  margin-top: 1rem;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bbb5ae;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2d8b7e;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(187, 181, 174, 0.2);
  text-align: center;
  font-size: 14px;
  color: #736c64;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content {
  max-width: 900px;
  width: 95vw;
  background-color: #1e1919;
  border-radius: 20px;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #2d8b7e 0%, #257366 100%);
  color: white;
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

.video-wrapper {
  position: relative;
  background-color: #000;
}

.demo-video {
  width: 100%;
  max-height: 500px;
  display: block;
}

.video-overlay-info {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 107, 61, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-badge-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.video-description {
  padding: 2rem;
  background-color: #1e1919;
  color: white;
}

.video-desc-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.video-desc-text {
  font-size: 15px;
  line-height: 1.7;
  color: #bbb5ae;
  margin-bottom: 1.5rem;
}

.video-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: #bbb5ae;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2d8b7e 0%, #3aa593 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Icon Sizes */
.icon-xs {
  width: 14px;
  height: 14px;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-md {
  width: 22px;
  height: 22px;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .hero-content,
  .download-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trending-section .section-header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .live-shows-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .app-buttons {
    flex-direction: column;
  }

  .app-store-btn,
  .play-store-btn {
    width: 100%;
    justify-content: center;
  }
}
