* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #141414;
  color: white;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #141414;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.netflix-logo {
  height: 25px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.message-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.message-content {
  max-width: 800px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  opacity: 0;
  animation: scaleIn 1s ease forwards 0.3s;
}

.message-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .message-image {
  transform: scale(1.05);
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

.message-quote {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.6s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.message-author {
  font-size: 1.2em;
  color: #e5e5e5;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.9s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* New hover effects */
.message-author {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.message-author::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e50914;
  transition: all 0.3s ease;
}

.message-author:hover::after {
  width: 100%;
  left: 0;
}

@media (max-width: 768px) {
  .message-quote {
    font-size: 1.5em;
  }

  .message-author {
    font-size: 1em;
  }

  .image-wrapper {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .message-quote {
    font-size: 1.2em;
  }

  .image-wrapper {
    aspect-ratio: 1/1;
  }
}
