@import url("https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300ita‌​lic,400italic,500,500italic,700,700italic,900italic,900");

/* CSS Variables */
:root {
  --normal-font: 400;
  --bold-font: 600;
  --bolder-font: 900;
  --primary-color: #0652dd;
  --secondary-color: #ea2027;
  --line-height: 1.7rem;
  --transition: 0.4s ease-in;
}

/* Smooth scroll effect */
html {
  /* scroll-behavior: smooth; */
}

/* Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* transition: var(--transition); */
}

body {
  font-family: "Roboto", sans-serf;
  background-color: black;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#page-cta {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

#logo-overlay {
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 2;
  pointer-events: none;
}

#logo-overlay img {
  max-width: 144px;
  height: auto;
  display: block;
}

#live-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ED48B1;
  color: white;
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  pointer-events: none;
}

#live-badge .live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  display: inline-block;
}

#live-badge .live-text {
  letter-spacing: 0.08em;
}

.live-text {
  color: #FFF;
  font-family: 'Roboto';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.25px;
}

#watch-button-container {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: auto;
  width: 250px;
}

#watch-button {
  background: #ED48B1;
  border: 3px solid #fff;
  padding: 10px 24px;
  border-radius: 40px;
  text-transform: none;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

#watch-button:hover {
  background: #FFD203;
  border: 3px solid #fff;
}
#watch-button:focus {
  background: #FFD203;
  border: 3px solid #fff;
  outline: none;
}

#video-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: transparent;
  pointer-events: none;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none !important;
}

#container {
  /* height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth; */
}