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

body {
  font-family: 'Arial', sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: url('https://multiverseentertainments.com/wp-content/uploads/2025/07/background-scaled.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
}

.menu-toggle {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  margin-right: 20px;
  position: relative;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, top 0.3s ease 0.3s;
}

.menu-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle::before {
  top: 2px;
}

.menu-toggle::after {
  bottom: 2px;
}

.navbar:hover .menu-toggle::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease, top 0.3s ease;
}

.navbar:hover .menu-toggle span {
  opacity: 0;
}

.navbar:hover .menu-toggle::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  transition: transform 0.3s ease, bottom 0.3s ease;
}

.navbar:hover .menu-toggle {
  transform: scale(1.2);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-block;
}

.logo img {
  height: 60px;
}

.nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  width: 250px;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  list-style: none;
  z-index: 10;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.navbar:hover .nav-menu {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

.nav-menu li {
  margin: 15px 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-menu li a:hover {
  color: #e12929;
}

/* Slider */
.slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1s ease-in-out, opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  clip-path: circle(100% at 50% 50%);
}

.text-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  max-width: 80%;
}

.text-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-content p {
  font-size: 1rem;
  margin-top: 15px;
  line-height: 1.5;
}

.arrow-button {
  display: inline-block;
  margin-top: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-button:hover {
  transform: scale(1.2);
}

.arrow-button svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.arrow-button:hover svg {
  stroke: #e12929;
}

/* Clock Animation */
.clock-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: #0000007d;
    border-radius: 50%;
    z-index: 3;
}

.clock-path svg {
  width: 100%;
  height: 100%;
}

.clock-circle {
  fill: none;
  stroke: #e12929;
  stroke-width: 0.5;
  stroke-dasharray: 282.74 70.68;
  stroke-dashoffset: 0;
  animation: dash 6s linear infinite, pulse 2s ease-in-out infinite;
}

@keyframes dash {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -353.42; }
}

@keyframes pulse {
  0%, 100% { stroke-width: 0.5; }
  50% { stroke-width: 1; }
}

/* Linear Navigation */
.slider-nav {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-dot:focus {
  outline: none;
}

.nav-dot.active {
  background: #e12929;
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(225, 41, 41, 0.8);
}

.nav-dot:hover {
  background: #e12929;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(225, 41, 41, 0.6);
}

/* Responsive Design */
/* Small screens (mobile, <= 768px) */
@media (max-width: 768px) {
  .text-content h1 { font-size: 1.8rem; }
  .text-content p { font-size: 0.9rem; }
  .text-content { max-width: 90%; }
  .clock-path { width: 350px; height: 350px; }
  .slider-nav { 
    bottom: 80px;
    gap: 10px; 
  }
  .nav-dot { width: 8px; height: 8px; }
  .nav-dot.active { transform: scale(1.4); }
  .nav-dot:hover { transform: scale(1.2); }
  .logo img { height: 40px; }
  .arrow-button svg { width: 30px; height: 30px; }
  .navbar { top: 10px; left: 10px; }
  .nav-menu { 
    width: 200px; 
    top: 60px; 
    left: 10px; 
    padding: 15px; 
  }
  .nav-menu li a { font-size: 1rem; }
}

/* Medium screens (tablets, 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .text-content h1 { font-size: 2.5rem; }
  .text-content p { font-size: 0.95rem; }
  .text-content { max-width: 85%; }
  .clock-path { width: 500px; height: 500px; }
  .slider-nav { 
    bottom: 100px;
    gap: 12px; 
  }
  .nav-dot { width: 10px; height: 10px; }
  .nav-dot.active { transform: scale(1.4); }
  .nav-dot:hover { transform: scale(1.2); }
  .logo img { height: 50px; }
  .arrow-button svg { width: 35px; height: 35px; }
  .navbar { top: 15px; left: 15px; }
  .nav-menu { 
    width: 220px; 
    top: 70px; 
    left: 15px; 
    padding: 18px; 
  }
  .nav-menu li a { font-size: 1.05rem; }
}

/* Large screens (desktops, > 1024px) */
@media (min-width: 1025px) {
  .text-content h1 { font-size: 3rem; }
  .text-content p { font-size: 1rem; }
  .text-content { max-width: 80%; }
  .clock-path { width: 700px; height: 700px; }
  .slider-nav { bottom: 120px; }
  .nav-dot { width: 12px; height: 12px; }
  .nav-dot.active { transform: scale(1.5); }
  .nav-dot:hover { transform: scale(1.3); }
  .logo img { height: 60px; }
  .arrow-button svg { width: 40px; height: 40px; }
}

