.forum-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.forum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #00d4ff;
}

.forum-header h1 {
    color: #00d4ff;
    margin: 0;
}

.new-topic-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.new-topic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.forum-categories {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(0, 0, 0, 0.8);
    border-left-color: #9d4edd;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-info i {
    font-size: 1.5rem;
    color: #00d4ff;
    width: 30px;
}

.category-info h3 {
    margin: 0 0 0.5rem 0;
    color: #e0e6ed;
}

.category-info h3 a {
    color: #e0e6ed;
    text-decoration: none;
}

.category-info h3 a:hover {
    color: #00d4ff;
}

.category-info p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.category-stats span {
    color: #999;
    font-size: 0.9rem;
}

.recent-topics {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.recent-topics h2 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.topic-list {
    display: grid;
    gap: 1rem;
}

.topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    border-left: 3px solid #333;
}

.topic-item:hover {
    border-left-color: #00d4ff;
}

.topic-info h4 {
    margin: 0 0 0.5rem 0;
    color: #e0e6ed;
}

.topic-info h4 a {
    color: #e0e6ed;
    text-decoration: none;
}

.topic-info h4 a:hover {
    color: #00d4ff;
}

.topic-meta {
    color: #999;
    font-size: 0.9rem;
}

.topic-stats {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .forum-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .category-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .topic-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}