/*-- Fonts https://fonts.google.com --*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*-- [CDN] Bootstrap Icons --*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/*-- For all box --*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: var(--f_poppins);
}

/*-- Base --*/
html {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: var(--c_dark);
  color: var(--c_light);
  overflow: auto;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 100%;
  min-height: 100%;
}

h1 {
  font-size: 50px;
  font-weight: 100;
}

@media screen and (max-width: 1000px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 200;
  text-transform: uppercase;
}

i {
  margin: 0 .5em;
}

.cyan {
  color: var(--c_cyan);
}

.cyan.beta {
  padding: 0 .5em;
}

/*-- General --*/
:root {
  /* Colors */
  --c_dark: #060613;
  --c_gray: #0c0c1c;
  --c_light: #f4f4f4;
  --c_cyan: #00d3e2;
  --c_fushia: #ff183f;

  --c_bolt: #0e76fd;
  --c_dlive: #ffd300;
  --c_kick: #53fc18;
  --c_livespace: #ff0070;
  --c_ultra: #896ae2;
  --c_vegalie: #cc4331;
  --c_artstation: #26bbff;
  --c_odysee: #eb3d44;


  /* Transitions */
  --t_1s: all 1s ease 0s;
  --t_3s: all 3s ease 0s;

  /* Fonts */
  --f_poppins: "Poppins", sans-serif;
  --f_jost: "Jost", sans-serif;
}

/*-- Text selector --*/
::selection {
  background-color: var(--c_cyan);
  color: var(--c_dark);
  border-radius: 10px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 25px;
}

::-webkit-scrollbar-track {
  background-color: var(--c_dark);
  border-radius: 25px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--c_cyan);
  border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--c_cyan);
  border-radius: 25px;
}

/* Scrollbar pour Firefox */
body::-webkit-scrollbar {
  width: 10px;
  border-radius: 25px;
  scrollbar-width: thin;
}

body::-webkit-scrollbar-track {
  border-radius: 25px;
  background-color: var(--c_dark);
  scrollbar-track-color: var(--c_dark);
}

body::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: var(--c_dark);
  scrollbar-thumb-color: var(--c_dark);
}

body::-webkit-scrollbar-thumb:hover {
  border-radius: 25px;
  background-color: var(--c_cyan);
}

/* Main-content */
.main-content {
  position: absolute;
  display: flex;
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  overflow-x: hidden;
}

/* Header BG */
.header {
  z-index: 1;
  position: relative;
  padding: 5em;
  width: 100vw;
  height: 100vh;
  background: url(/style/img/background_0.avif);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Hero */
.hero {
  z-index: 2;
  display: flex;
  padding: 5em;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

@media screen and (max-width: 1600px) {
  .hero {
    flex-direction: column;
    padding: .3em;
  }
}

.hero .hero_left {
  max-width: 800px;
}

@media screen and (max-width: 1600px) {
  .hero .hero_left {
    width: 100%;
    text-align: center;
  }
}

.hero .hero_left p {
  font-size: 1rem;
}

.hero .hero_right {
  padding: 3em;
  min-width: 400px;
  text-align: right;
}

@media screen and (max-width: 1600px) {
  .hero .hero_right {
    padding: .3em;
    width: 100vw;
    text-align: center;
  }
}

.hero .hero_right p {
  font-size: 1em;
  font-weight: 400;
}

.hero .hero_right section {
  padding: 1em 0;
}

.hero .hero_right .nav_link {
  padding: .5em;
}

.hero .hero_right .nav_link a {
  padding: .2em 1em;
  color: var(--c_dark);
  font-size: 1rem;
  font-weight: bold;
  border-radius: 15px 50px;
  background-color: var(--c_cyan);
}

.hero .hero_right .nav_link a:hover {
  color: var(--c_light);
  border-radius: 50px 15px;
  background-color: var(--c_fushia);
}

/* RSS Odysee */
.rss-title {
  color: #007bff;
  font-size: 32px;
  text-align: center;
  margin-top: 20px;
}

.rss-description {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.rss-item {
  background-color: #fff;
  padding: 20px;
  margin: 10px auto;
  width: 80%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-title {
  color: #007bff;
  text-decoration: none;
  font-size: 24px;
}

.video-title:hover {
  text-decoration: underline;
}

.video-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.video-thumbnail {
  text-align: center;
  margin-bottom: 20px;
}

.watch-link {
  color: #28a745;
  font-weight: bold;
  text-decoration: none;
}

.watch-link:hover {
  text-decoration: underline;
}

hr {
  border: 1px solid #ccc;
}

