body {
  margin: 0;
  background-color: #000000;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  padding: 0 20px 80px;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
  pointer-events: none;
}

.experience-title {
  text-align: center;
  font-size: 2.8rem;
  color: #e50914;
  padding: 40px 20px 20px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #6f1e22;
}

.timeline-item {
  position: relative;
  margin-left: 60px;
  margin-bottom: 40px;
  padding-left: 20px;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: #e50914;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #e50914;
  font-size: 1.2rem;
}

.timeline-content h4 {
  margin: 5px 0;
  font-weight: 400;
  font-size: 1rem;
  color: #cccccc;
}

.timeline-date {
  display: block;
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dddddd;
}

@media (max-width: 600px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    margin-left: 40px;
  }

  .timeline-dot {
    left: -20px;
  }
}


/*home button*/

.home-float-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e50914;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.home-float-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.5);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

/* Footer Nav Buttons */
footer {
  background-color: transparent;
  padding: 40px 0;
  text-align: right;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e50914;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

.next-btn::after {
  content: " →";
}