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

body {
    background-color: rgb(0, 0, 0);
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    padding-bottom: 100px;
}

.prev-title {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 44px;
    font-weight: 300;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto 80px;
    margin-top: 100px;
    padding: 40px;
}

.timeline-container {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    height: 40vh;
}

.timeline-scroll-wrapper {
    width: 100%;
    overflow-x: hidden;
    /* padding-bottom: 20px; */
    cursor: grab;
    height: 40vh;
}

.timeline-scroll {
    width: 4000px;
    height: 100px;
}

.timeline-line {
    margin-top: 30px;
}

.point-group text {
    font-size: 12px;
}

.point-group text span {
    font-size: 16px;
    color: #ff6a00;
}

.timeline-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-point:hover {
    r: 7;
    fill: #fff;
}

.point-group text {
    pointer-events: none;
    transition: all 0.3s ease;
}

.point-group:hover text {
    fill: #ff6a00;
    font-weight: bold;
}

/* Custom scrollbar */
.timeline-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-track {
    background: #333;
}

.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ff6a00;
    border-radius: 4px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}

.point-details-container {
    /* margin-top: 30px; */
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(0deg, transparent, rgba(255, 106, 0, 0.080), transparent);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 
              inset 0 4px 20px rgba(255, 255, 255, 0.3); */
}

/* .point-details-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
                inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
  } */

.point-title {
    color: #ff6a00;
    margin-bottom: 10px;
}

.point-content {
    line-height: 1.6;
}