:root {
  --primary-bg: #8b2e16; /* Deep reddish-brown from screenshot */
  --header-bg: #7a2813;
  --text-color: #ffffff;
  --footer-text: #e5e7eb;
  --accent-color: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--primary-bg);
  background: linear-gradient(180deg, var(--header-bg) 0%, var(--primary-bg) 100%);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* Video Section - Full screen height concept */
.video-container {
  width: 100%;
  min-height: 100vh; /* Takes full viewport height */
  min-height: 100dvh; /* Better for mobile devices */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

vturb-smartplayer {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important; /* Allow it to fill the screen */
}

/* Footer Section */
footer {
  padding: 3rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.8rem;
  color: var(--footer-text);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-copyright {
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.footer-disclaimer {
  margin-bottom: 2.5rem;
  opacity: 0.7;
  line-height: 1.6;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
}

.footer-links a:hover {
  opacity: 0.8;
  border-bottom: 1px solid var(--text-color);
}

/* Policy Pages Enhancements */
.policy-body {
  background-color: #f3f4f6;
  color: #374151;
}

.policy-container {
  max-width: 850px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .policy-container {
    margin: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .footer-links {
    gap: 1rem;
  }
}

/* Back to Home Button (Left Arrow) */
.back-home {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--header-bg, #7a2813);
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10000;
  cursor: pointer;
  border: none;
}

.back-home:hover {
  transform: translateX(-5px);
  background-color: var(--primary-bg, #8b2e16);
}

.back-home svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}


