.chronicle-alternative {
    margin: 60px auto;
    padding: 30px;
    max-width: 800px;
    background-color: #1e1e1e;
    border-radius: 12px;
    border: 1px solid #444;
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.1);
    text-align: center;
    animation: fadeIn 1.5s ease;
}

.chronicle-alternative h2,
.chronicle-alternative h3 {
    color: #ffcc66;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.memory-today .hero {
    margin-bottom: 10px;
    font-size: 17px;
    color: #eee;
}

.teletype-scroll {
    height: 140px;
    overflow: hidden;
    position: relative;
    border: 1px solid #555;
    background: #111;
    margin-bottom: 20px;
    border-radius: 8px;
}

.teletype-scroll ul {
    animation: scroll-up 18s linear infinite;
    list-style: none;
    padding: 0;
    margin: 0;
}

.teletype-scroll li {
    padding: 6px 12px;
    font-size: 16px;
    color: #eee;
}

@keyframes scroll-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.quote-box {
    margin-top: 10px;
    padding: 15px;
    background: #222;
    border-left: 4px solid #ffcc66;
    font-style: italic;
    color: #ddd;
    border-radius: 8px;
    position: relative;
}

.quote-box::before {
    content: "❝";
    font-size: 30px;
    position: absolute;
    left: 10px;
    top: 5px;
    color: #ffcc66;
}

.quote-author {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-size: 14px;
    color: #aaa;
}

.hero-link {
    color: #ffcc66;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-link:hover {
    color: #ffd700;
    text-decoration: underline;
}
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

