* {
  box-sizing: border-box;
}

:root {
  --blue-main: #0056b8;
  --blue-dark: #0a2f7d;
  --blue-light: #18a0e1;
  --text: #ffffff;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--blue-main);
  color: var(--text);
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  text-align: center;
  margin-bottom: 34px;
}

h1 {
  margin: 0;
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
}

.title-main,
.title-secondary {
  display: block;
}

.title-main {
  font-size: clamp(34px, 5vw, 64px);
}

.title-secondary {
  margin-top: 10px;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
}

.stream-section {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.help-text {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.reload-button {
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.reload-button:hover {
  background: rgba(255,255,255,0.2);
}

.bg-shape {
  position: fixed;
  z-index: 1;
  transform: rotate(45deg);
  opacity: 1;
  pointer-events: none;
}

.shape-1 {
  width: 220px;
  height: 220px;
  background: var(--blue-light);
  top: -70px;
  left: 70px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--blue-light);
  right: 130px;
  bottom: -20px;
}

.shape-3 {
  width: 340px;
  height: 340px;
  background: rgba(10, 47, 125, 0.65);
  top: 160px;
  left: 50%;
  margin-left: -170px;
}

@media (max-width: 900px) {
  .page {
    padding-top: 52px;
  }

  .shape-1 {
    width: 160px;
    height: 160px;
    top: -60px;
    left: 20px;
  }

  .shape-2 {
    width: 180px;
    height: 180px;
    right: 20px;
    bottom: 20px;
  }

  .shape-3 {
    width: 240px;
    height: 240px;
    top: 210px;
    margin-left: -120px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 40px 14px 32px;
  }

  .hero {
    margin-bottom: 24px;
  }

  .title-main {
    font-size: 34px;
  }

  .title-secondary {
    font-size: 23px;
  }

  .video-wrapper {
    border-radius: 10px;
  }

  .help-text {
    font-size: 14px;
  }

  .reload-button {
    width: 100%;
    max-width: 320px;
  }
}
