* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #000000;
  color: #A2A2A2;
  display: flex;
  flex-direction: column;
}

.header {
  width: 100%;
  padding: 2rem 0 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}



main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 90vw;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #e0e0e0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.message-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 0 0;
}

.message-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  letter-spacing: 0.05em;
}


.privacypolicy {
    width: 80%; /* The div takes up 80% of its parent's width */
    margin: 0 auto; /* Centers the div horizontally */
    padding: 15px;
    /*border: 1px solid #ccc;*/
    box-sizing: border-box; /* Ensures padding is included in the width */
    /* Optional: Limit line length for readability on large screens */
    max-width: 800px;
}


.footer {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  background: transparent;
  color: #888;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .video-container {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
  .message-section h1 {
    font-size: 1.5rem;
      color: chartreuse;
  }
  .header {
    padding: 1rem 0 0.5rem 0;
  }
}