body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    background: none;
    text-align: center;
    font-weight: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-bg {
    background: url('./bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(3px);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

#forumsMain {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 12px 32px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forum-list {
    width: 100%;
}

.forum-category {
    margin-bottom: 36px;
    width: 100%;
}

.category-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #00fff6;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.forum-table {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(30,30,30,0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.forum-row {
    display: flex;
    border-bottom: 1px solid #333;
    align-items: stretch;
}

.forum-row:last-child {
    border-bottom: none;
}

.forum-header {
    background: #232323;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.05em;
}

.forum-col {
    padding: 18px 12px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.forum-col.forum-name {
    flex: 3;
}

.forum-col.forum-topics,
.forum-col.forum-posts {
    flex: 0.7;
    text-align: center;
    align-items: center;
}

.forum-col.forum-lastpost {
    flex: 1.5;
    font-size: 0.97em;
    color: #bbb;
}

.forum-desc {
    font-size: 0.95em;
    color: #aaa;
    margin-top: 4px;
}

.forum-col.forum-name a {
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.08em;
}

.forum-col.forum-name a:hover {
    text-decoration: underline;
}

.lastpost-date {
    font-size: 0.92em;
    color: #888;
}

.forums-footer {
    width: 100%;
    background: rgba(20, 20, 20, 0.97);
    color: #bbb;
    padding: 18px 0 14px 0;
    text-align: center;
    font-size: 1em;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-links a {
    color: #00fff6;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    #forumsMain {
        padding: 10px 2vw 20px 2vw;
    }
    .forum-row, .forum-header {
        flex-direction: column;
    }
    .forum-col {
        padding: 10px 6px;
    }
}