/* Scrolling Text */
.scrolling-text {
    background: rgba(0, 0, 0, 0.7);
    color: #b39ddb;
    padding: 5px 0;
    overflow: hidden;
    position: relative;
}

.scrolling-text span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 15s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-text {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Chatbox */
.chatbox {
    background-color: #1a237e;
    padding: 15px;
    border: 2px solid #3949ab;
    margin-top: 20px;
    border-radius: 5px;
}

.chatbox h3 {
    color: #b39ddb;
    margin-bottom: 10px;
    border-bottom: 1px solid #5c6bc0;
    padding-bottom: 5px;
    font-size: 14px;
}

.chat-messages {
    font-size: 12px;
    color: #e6e6ff;
}

.message {
    margin-bottom: 5px;
    padding: 3px 0;
}

/* Anime Box */
.anime-box {
    background-color: #1a237e;
    padding: 15px;
    border: 2px solid #3949ab;
    margin-top: 15px;
    border-radius: 5px;
}

.anime-box h3 {
    color: #b39ddb;
    margin-bottom: 10px;
    border-bottom: 1px solid #5c6bc0;
    padding-bottom: 5px;
    font-size: 14px;
}

.anime-list {
    font-size: 12px;
    color: #e6e6ff;
}

.anime-item {
    margin-bottom: 4px;
    padding: 2px 0;
}

/* Ajustes para el sidebar con nuevo contenido */
.sidebar {
    background-color: #1a237e;
    padding: 15px;
    border: 2px solid #3949ab;
    height: fit-content;
    position: sticky;
    top: 20px;
}/* Galería de Intereses */
.interests-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.interest-card {
    background-color: #1a237e;
    border: 2px solid #3949ab;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.interest-card:hover {
    transform: translateY(-5px);
    border-color: #7e57c2;
}

.interest-icon {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

.interest-card h3 {
    color: #c5cae9;
    margin-bottom: 10px;
    font-size: 1.2em;
    text-align: center;
}

.interest-card p {
    color: #d1c4e9;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
}

.interest-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background-color: #283593;
    color: #b39ddb;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    border: 1px solid #5c6bc0;
}

/* Responsive */
@media (max-width: 768px) {
    .interests-gallery {
        grid-template-columns: 1fr;
    }
}