/* Roadmap Styles */
.milestone-textbox {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    background: #fff;
    border: 4px solid #000;
    border-radius: 8px;
    padding: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #000;
    display: none;
    z-index: 10;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.milestone-textbox:hover {
    background: #f0f0f0;
    border-color: #666;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

.milestone-textbox::after {
    content: '';
    position: absolute;
    top: -12px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000;
    transition: all 0.2s ease;
}

.milestone-textbox:hover::after {
    border-bottom-color: #666;
}

.start-journey-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    background: #fff;
    border: 4px solid #000;
    border-radius: 8px;
    padding: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #000;
    z-index: 10;
    text-align: center;
    cursor: pointer;
}

.start-journey-button::after {
    content: '';
    position: absolute;
    top: -12px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000;
}

.roadmap-container {
    position: relative;
    padding-bottom: 50px;
    background: url('../assets/images/grass.png') repeat;
}

.video-play-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    width: calc(100% - 64px);
    height: 32px;
    background: #1a2a1a;
    border: 2px solid #9acd32;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #333, inset 1px 1px 0 #b0ff57, inset -1px -1px 0 #669900;
    color: #9acd32;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    z-index: 20;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-play-btn:hover {
    border-color: #b0ff57;
    box-shadow: 2px 2px 0 #333, inset 1px 1px 0 #b0ff57, inset -1px -1px 0 #669900, 0 0 12px #b0ff57;
}

.video-play-btn:active {
    transform: translateY(2px);
    box-shadow: 1px 1px 0 #333, inset 1px 1px 0 #b0ff57, inset -1px -1px 0 #669900;
}

#site-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: black !important;
    margin: 0 !important;
    padding: 0 !important;
}

#fixed-screen,
#fixed-screen-2 {
    position: absolute;
    top: 142px;
    width: 384px;
    height: 624px;
    background: #1a2a1a;
    border: 4px solid #9acd32;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #333, inset 2px 2px 0 #b0ff57, inset -2px -2px 0 #669900;
    z-index: 2000;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 16px;
    gap: 16px;
}

#fixed-screen {
    left: 32px;
}

#fixed-screen-2 {
    right: 32px;
} 