@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --bg-topbar: #de2800;
  --bg-main: #000000;
  --text-white: #ffffff;
  --text-muted: #a1a1aa;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-btn: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--bg-topbar);
  color: var(--text-white);
  padding: 16px 20px;
  text-align: center;
  width: 100%;
}

.top-bar-content {
  max-width: 1140px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.top-bar-content p {
  margin: 2px 0;
}

.top-bar-content strong {
  font-weight: 700;
}

/* Main Video Section */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg-main);
}

.video-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer Section */
.footer {
  background-color: var(--bg-main);
  color: var(--text-white);
  padding: 32px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer p {
  margin-top: 8px;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: var(--text-white);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-links span {
  margin: 0 4px;
}

/* Responsive Rules */
@media screen and (max-width: 480px) {
  .top-bar {
    padding: 12px 16px;
  }
  
  .top-bar-content {
    font-size: 18px;
    line-height: 1.3;
  }

  .main-content {
    padding: 24px 12px;
  }

  .footer {
    font-size: 12px;
    padding: 24px 16px;
  }
}

/* Legal Pages Styling (Terms & Privacy) */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #ffffff;
}

.legal-page h1:first-of-type {
  margin-top: 0;
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--bg-topbar);
  text-decoration: none;
  font-weight: 600;
}

.legal-back-link:hover {
  text-decoration: underline;
}
