/* ================= RESET ================= */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  cursor: none;
  font-family: 'Roboto', sans-serif;
  overflow: hidden;

}

/* ================= VIDEO BACKGROUND ================= */
.bg-video {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
  filter: brightness(0.4);
}

/* ================= CURSOR ================= */
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px #00c3ff, 0 0 20px #00c3ff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0,200,255,0.4);
  box-shadow:0 0 15px rgba(0,200,255,0.4);
  pointer-events:none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: transform 0.2s;
}
.cursor.hover { transform: translate(-50%, -50%) scale(1.8); background:#00c3ff; }
.cursor-trail.hover { transform: translate(-50%, -50%) scale(1.5); }

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-content {
  max-width: 700px;
  padding: 0 20px;
}
.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00c3ff, 0 0 20px #33a1ff;
}
.hero-text {
  font-size: 20px;
  margin-bottom: 40px;
}

/* ================= SOCIAL BUTTONS ================= */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.btn {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn i {
  font-size: 44px;
  transition: all 0.3s ease;
}

/* Facebook */
.fb-btn i { color:#006fff; text-shadow: 0 0 20px #006fff; }
.fb-btn:hover { transform: scale(1.2); box-shadow:0 0 40px #006fff; }

/* Instagram */
.ig-btn i { color:#ff5f40; text-shadow: 0 0 20px #ff5f40; }
.ig-btn:hover { transform: scale(1.2); box-shadow:0 0 40px #ff5f40; }

/* YouTube */
.yt-btn i { color:#ff0000; text-shadow: 0 0 20px #ff0000; }
.yt-btn:hover { transform: scale(1.2); box-shadow:0 0 40px #ff0000; }


.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: white;
  font-size: 14px;
  background: rgba(0,0,0,0.3); /* semi-transparent peste video */
  backdrop-filter: blur(5px);
  z-index: 100;
}
.footer a {
  color: #33a1ff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
