.wormhole-intro {
    background: rgba(20, 0, 40, 0.95) !important;
    border: 2px solid #9933ff !important;
    box-shadow: 0 0 20px #9933ff50;
}

.wormhole-intro h2 {
    color: #9933ff !important;
    text-shadow: 0 0 10px #9933ff;
}

.wormhole-intro .mission-details li:before {
    content: "⚡";
    color: #9933ff;
}

.wormhole-intro .wormhole-status {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(153, 51, 255, 0.1);
    border-radius: 5px;
}

.wormhole-intro .start-mission {
    background: #9933ff !important;
    box-shadow: 0 0 15px #9933ff50;
}

.wormhole-intro .start-mission:hover {
    background: #b366ff !important;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 20px #9933ff80;
}

.wormhole-options {
    display: flex;
    gap: 2rem;
    pointer-events: auto;
    position: absolute;
    bottom: 15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    justify-content: center;
}

.wormhole-marker {
    cursor: pointer;
    padding: 1rem 2rem;
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid cyan;
    border-radius: 5px;
    transition: all 0.3s;
}

.wormhole-marker:hover {
    background: rgba(0, 255, 255, 0.4);
    transform: scale(1.1);
}