@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

#ghostShipWidget * {
    box-sizing: border-box;
}

#ghostShipWidget {
    background: linear-gradient(to bottom, #0a0a0a, #111222, #0a0f1a);
    font-family: 'VT323', monospace;
    color: #d1f7ff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #00ffff44;
    box-shadow: 0 0 14px #00ffff33;
    overflow: hidden;
    max-width: 480px;
    margin: 20px auto;
}

#ghostShipWidget h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #9ef;
    text-shadow: 0 0 8px #00ffff88;
    text-align: center;
    letter-spacing: 2px;
}

#ghostManifestTitle {
    font-size: 18px;
    margin: 24px 0 8px;
    color: #aad;
    text-align: center;
    text-shadow: 0 0 5px #aaddff33;
}

.accordion,
#ghostManifest li,
#featuredArticlesList li {
    list-style: none;
    background: #111;
    border: 1px solid #00ffff22;
    border-radius: 6px;
    margin: 8px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: box-shadow 0.2s ease;
}

#featuredArticlesList, #ghostManifest {
    padding-left: 0;
    margin: 0;
}

.accordion:hover,
#ghostManifest li:hover,
#featuredArticlesList li:hover {
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

.accordion-title {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #9ef;
    transition: background 0.2s ease, color 0.2s ease;
    display: block;
}

.accordion-title:hover {
    background: #001a1a;
    color: #00ffff;
}

.accordion-title.active {
    background: #002222;
    color: #00ffff;
}

.accordion-content {
    display: none;
    padding: 12px 15px;
    font-size: 14px;
    color: #aee;
    background: #0a0a0a;
    white-space: pre-line;
    border-top: 1px solid #00ffff11;
}

.accordion-content a {
    color: #88ddff;
    text-decoration: underline;
    word-break: break-all;
}

.accordion-content a:hover {
    color: #ccffff;
    text-shadow: 0 0 5px #88ff88;
}