* Базовые сбросы и структура */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('https://example.com/jujutsu-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Хедер */
header {
    background: rgba(10, 5, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 2px solid #6a00ff;
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

/* Основной контент */
main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.forum-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thread-list {
    padding: 1rem;
}

.thread-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid;
    transition: transform 0.2s ease;
}

/* Формы */
textarea, input[type="text"] {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(106, 0, 255, 0.3);
    border-radius: 6px;
    color: white;
    resize: vertical;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Футер */
footer {
    background: rgba(10, 5, 30, 0.9);
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid #6a00ff;
}