.forums-container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 5rem;
    color: white;
    font-family: "Courier New", Courier, monospace;
}

.forums-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1.2s ease-out forwards;
}

.forums-header h1 {
    font-size: 2.5rem;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: white;
}

.forums-header p {
    color: #666;
    letter-spacing: 2px;
}

.forum-category {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.category-header {
    background-color: #080808;
    padding: 1rem 2rem;
    border-left: 3px solid #ffffff;
    margin-bottom: 1px;
}

.category-header h2 {
    font-size: 1rem;
    letter-spacing: 4px;
    color: #eee;
}

.forum-row {
    background-color: #030303;
    border: 1px solid #111;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 2px;
}

.forum-row:hover {
    background-color: #0a0a0a;
    border-color: #333;
    transform: translateX(5px);
}

.thread-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.forum-row:hover .thread-info h3 {
    color: #ffffff;
}

.thread-info p {
    color: #666;
    font-size: 0.9rem;
}

.thread-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 200px;
}

.thread-meta span {
    font-size: 0.8rem;
    color: #444;
}

.forum-row:hover .thread-meta span {
    color: #888;
}

.construction-note {
    margin-top: 4rem;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

@media (max-width: 800px) {
    .forum-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thread-meta {
        text-align: left;
    }
}
