/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 22 2025 | 13:28:41 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow-x: hidden;
}*/

.timeline-container {
	margin:-20px 0px 0px 20px;
    max-width: 350px;
    width: 90%;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.timeline-header h1 {
    color: white;
    font-size: 1em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.timeline-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.0em;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: white;
    font-weight: bold;
}

.timeline-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, 
        rgba(255,255,255,0.3) 0%, 
        rgba(168,85,247,0.6) 50%, 
        rgba(255,255,255,0.3) 100%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 20px 0;
}

.timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid #a855f7;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(168,85,247,0.6);
    transition: all 0.3s ease;
}

.timeline-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(168,85,247,0.8);
}

.timeline-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid #a855f7;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(168,85,247,0.6);
    transition: all 0.3s ease;
}

.timeline-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(168,85,247,0.8);
}

.selected-year-display {
    text-align: center;
    margin-top: 20px;
}

.selected-year-display span {
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-shadow: 0 4px 20px rgba(168,85,247,0.8);
    padding: 10px 30px;
    background: rgba(168,85,247,0.3);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.cursor-marker {
    position: absolute;
    left: 20%;
    top: 0;
    transform: translateX(-50%);
    z-index: 100;
    transition: top 0.3s ease;
    pointer-events: none;
}

.cursor-dot {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(251,191,36,0.8), 0 0 40px rgba(251,191,36,0.4);
    animation: cursorPulse 1.5s infinite;
}

.cursor-label {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(251,191,36,0.5);
}

.cursor-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f59e0b;
}

@keyframes cursorPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251,191,36,0.8), 0 0 40px rgba(251,191,36,0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(251,191,36,1), 0 0 60px rgba(251,191,36,0.6);
    }
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.2) 0%, 
        rgba(255,255,255,0.6) 50%, 
        rgba(255,255,255,0.2) 100%);
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }
.timeline-item:nth-child(7) { animation-delay: 1.4s; }

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: calc(20% + 40px);
    text-align: left;

    /*margin-right: auto;
    margin-left: 0;
    padding-right: calc(50% + 40px);
    text-align: right;*/
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: calc(20% + 40px);
    text-align: left;
}

.timeline-content {
    width: 100%;
    position: relative;
}

.timeline-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent);
    transition: left 0.6s ease;
}

.timeline-card:hover::before {
    left: 100%;
}

.timeline-card:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.year {
    font-size: 0.8em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: rgba(255,255,255,0.9);
    font-size: 0.7em;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 20%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #7e22ce;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(126, 34, 206, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(126, 34, 206, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(126, 34, 206, 0.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }

    .cursor-marker {
        left: 20px;
    }

    .timeline-header h1 {
        font-size: 2em;
    }

    .year {
        font-size: 2em;
    }

    .slider-container {
        padding: 20px;
    }

    .selected-year-display span {
        font-size: 2em;
    }
}