body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(to bottom, #fdf4ee, #fbe8d3);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-height: 100vh;
  }
  
  h1 {
    color: #a33600;
    margin-top: 30px;
    font-size: 32px;
  }
  
  h1 span {
    font-size: 36px;
  }
  
  .sub-header {
    color: #ff7a00;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .live-box {
    border: 5px solid #ff7a00;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 90%;
    max-width: 720px;
    height: 420px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  }
  
  .live-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }
  
  .cta-button {
    margin-top: 25px;
    background-color: #ff4d00;
    color: white;
    font-size: 20px;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(255, 77, 0, 0.3);
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e64300;
  }
  
  .note {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
  }
  
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    cursor: pointer;
  }
  


/* stream css */

/* Stream Status Styles */
.stream-video {
    position: relative;
}

.stream-status {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.status-indicator {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.status-indicator.online {
    background: rgba(34, 197, 94, 0.9);
    border: 2px solid #22c55e;
}

.status-indicator.offline {
    background: rgba(239, 68, 68, 0.9);
    border: 2px solid #ef4444;
}
/* Reset and Base Styles */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

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

.logo-icon {
  background: linear-gradient(135deg, #f97316, #dc2626);
  padding: 8px;
  border-radius: 12px;
  font-size: 1.5rem;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #f97316;
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  padding: 3rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.highlight {
  display: block;
  background: linear-gradient(135deg, #f97316, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Order Buttons */
.order-btn {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: inherit;
}

.order-btn.primary {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.order-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.order-btn.secondary {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #f97316;
}

.order-btn.secondary:hover {
  background: #f97316;
  color: white;
}

.order-btn.large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

/* Stream Section - Main Focus */
.stream-section {
  padding: 2rem 0 4rem;
  background: white;
  margin: 2rem 0;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.stream-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.live-text {
  font-weight: 700;
  color: #dc2626;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.viewer-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Stream Container */
.stream-container {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.stream-video{
  aspect-ratio: 16/9;
  position: relative;
  background: #000;
}
.stream-video iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto; /* override any global rule */
}

.stream-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1f2937, #111827);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-overlay {
  text-align: center;
  color: white;
  z-index: 2;
}

.play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stream-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stream-overlay p {
  color: #9ca3af;
  font-size: 1rem;
}

.stream-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Stream Controls */
.stream-controls {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Stream Stats */
.stream-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #dc2626);
  border-radius: 10px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
}

.queue-status {
  color: #059669;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: white;
  border-radius: 24px;
  margin: 2rem 0;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-note {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 1rem !important;
}

/* Features */
.features {
  padding: 4rem 0;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature p {
  color: #6b7280;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer p {
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
      display: none;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .stream-header {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
  
  .stream-controls {
      flex-direction: column;
      text-align: center;
  }
  
  .stream-stats {
      grid-template-columns: 1fr;
  }
  
  .stat-card {
      justify-content: center;
      text-align: center;
  }
  
  .cta-content h3 {
      font-size: 2rem;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .hero {
      padding: 2rem 0;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
  
  .order-btn.primary {
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
  }
  
  .order-btn.large {
      padding: 1rem 2rem;
      font-size: 1.1rem;
  }
}

/* Stream Status Styles */
.stream-video {
    position: relative;
}

#streamStatus {
    animation: fadeIn 0.5s ease-in;
}

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