:root {
  --french-blue: #0f1c3f;
  --french-red: #dc314e;
  --text-color: #333;
}

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

@font-face {
  font-family: "canalplus";
  src: url("/fonts/canal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "canalplus";
  src: url("/fonts/canalplus.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "canalplus";
  src: url("/fonts/canalplus_bi.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "canalplus-fallback";
  src: local("Arial");
  ascent-override: 102.15%;
  descent-override: 27.88%;
  line-gap-override: 0%;
  size-adjust: 95.45%;
}

.canal-font {
  font-family: "canalplus", "canalplus-fallback", sans-serif;
}

body {
  position: relative;
  height: 100vh;
}

h1 {
  font-family: "canalplus";
  font-weight: 700;
  font-style: italic;
  color: black;
  margin-bottom: 10px;
}

p {
  margin-top: 20px;
  font-size: 1.1rem;
}

.rouge {
  color: var(--french-red);
}

.container {
  font-family: "canalplus";
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: black;
  clear: both;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.container .image {
  width: 100%;
}

.container .image img {
  width: 100%;
  height: auto;
  border: none;
}

.notes {
  position: fixed;
  bottom: 0;
  font-family: "canalplus";
  font-size: 0.95rem;
  color: #666;
  padding: 20px 20px 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
}
th,
td {
  padding: 2px 8px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.8rem;
}
th {
  background: #2c3e50;
  color: white;
  font-weight: 600;
}
tr:nth-child(even) {
  background: #fcfcfc;
}
.channel {
  text-align: left;
  font-weight: 500;
  padding-left: 12px;
  min-width: 140px;
}
.var {
  background: #fff8e1;
  font-weight: 500;
}
@media (max-width: 680px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  th,
  td {
    font-size: 0.92rem;
    padding: 8px 6px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 20px 10px 20px 10px;
  }
  h1 {
    font-size: 1.5rem;
  }
}
