img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
body, p, h1, h2, h3, h4, h5, h6, a, span, div {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
html, body {
  margin: 0;
  width: 100%;
  font-family: 'Anton';
  scroll-behavior: smooth;
}
section {
  width: 100%;
  height: 100vh;
}
.hero {
  position: relative;
  overflow: hidden;
  color: #c70001;
  background: white;
}
.container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { top: 0; }
  50% { top: -10px; }
  100% { top: 0; }
}
h1 {
  font-size: 160px;
  margin: 0;
}
h2 {
  font-size: 30px;
  position: relative;
  margin-top: -10%;
  font-family: 'Amsterdam';
}
.social {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: flex;
  gap: 15px;
}
.social a {
  transition: transform 0.2s ease;
}
.social a:hover {
  transform: translateY(-6px);
}
.social a img {
  width: 40px;
  height: 40px;
  display: block;
}
.center-image {
  transition: transform 0.3s ease, filter 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}
.center-image:hover {
  transform: translateX(-50%) scale(1.05);
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2)) brightness(1.05);
}
.red {
  background: #c70001;
  position: relative;
  display: flex;
  height: 120vh;
  align-items: center;
  overflow: hidden;
}
.red-image, .red-text {
  flex: 1;
}
.red-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.red-image img {
  width: 100%;
  height: auto;
  max-width: 480px;
  object-fit: cover;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  animation: float-red 6s ease-in-out infinite;
}
@keyframes float-red {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.red-text {
  padding-left: 40px;
  color: #fff;
  max-width: 100%;
}
.red-text h1 {
  font-family: 'Anton';
  font-size: 60px;
  margin: 0 0 80px 0;
}
.red-text p {
  font-family: 'Archivo';
  font-size: 16px;
  line-height: 1.5;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}
.white {
  background: #fff;
  color: #c70001;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
  height: 140vh;
  display: flex;
  flex-direction: column;
}
.white h1 {
  font-family: 'Anton';
  font-size: 60px;
  margin-bottom: 30px;
}
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.video-slot {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 40px;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.video-slot::-webkit-scrollbar {
  height: 6px;
}
.video-slot::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}
.video-slot video {
  flex: 0 0 auto;
  width: 220px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.white p {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: #000;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  user-select: none;
}
.black {
  background: url('posterv2.png') center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.black-content p {
  font-family: 'Anton';
  font-size: 30px;
  max-width: 800px;
  margin-bottom: 30px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}
.black-btn {
  display: inline-block;
  background: #c70001;
  color: #fff;
  font-family: 'Anton';
  font-size: 20px;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulse 6s infinite;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}
.black-btn:hover {
  background: #ff1a1a;
  transform: scale(1.05);
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.footer {
  background: #000;
  padding: 30px 0;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a img {
  width: 40px;
  height: 40px;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
  transition: transform 0.2s ease;
}
.footer-social a:hover img {
  transform: translateY(-6px);
}
@media (max-width: 1024px) {
  h1 { font-size: 100px; }
  .center-image { height: 90%; }
  .red { flex-direction: column; height: auto; padding: 60px 20px; }
  .red-text { padding-left: 0; text-align: center; }
  .red-text h1 { margin-bottom: 40px; }
}
@media (max-width: 768px) {
  .red-image img {
    max-width: 320px;
  }
  h1 { font-size: 64px; }
  h2 { font-size: 22px; margin-top: -5%; }
  .social { right: 15px; bottom: 15px; }
  .center-image { height: 80%; }
  .video-slot video { width: 180px; height: 340px; }
  .white { height: auto; padding-bottom: 80px; }
}
@media (max-width: 480px) {
  h1 { font-size: 42px; }
  h2 { font-size: 18px; }
  .center-image { height: 70%; }
  .red-text h1 { font-size: 42px; }
  .black-content p { font-size: 22px; }

}
