        /* Специфичные стили для страницы правил */
        .rules-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        /* Навигация (TOC) */
        .toc-nav {
            position: sticky;
            top: 95px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            backdrop-filter: blur(10px);
        }
        .toc-nav h3 {
            font-size: 1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .toc-link {
            display: block;
            padding: 0.7rem 1rem;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: var(--radius-md);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
            border-left: 2px solid transparent;
        }
        .toc-link:hover, .toc-link.active {
            background: rgba(119, 74, 255, 0.08);
            color: var(--text-primary);
            border-left-color: var(--accent-purple);
        }

        /* Секции правил */
        .rules-content {
            display: grid;
            gap: 2rem;
        }
        .rule-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 2rem;
            transition: border-color var(--transition-normal);
        }
        .rule-section:hover { border-color: var(--accent-purple); }

        .section-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .section-icon {
            font-size: 1.8rem;
            background: var(--purple-light);
            width: 48px; height: 48px;
            border-radius: var(--radius-md);
            display: grid; place-items: center;
        }
        .section-title { font-size: 1.4rem; margin: 0; color: var(--text-primary); }

        /* Списки правил */
        .rules-list { list-style: none; padding: 0; display: grid; gap: 0.8rem; }
        .rule-item {
            background: var(--bg-secondary);
            padding: 1rem 1.2rem;
            border-radius: var(--radius-md);
            border-left: 3px solid var(--accent-purple);
            color: var(--text-primary);
            line-height: 1.5;
            transition: transform 0.2s, background 0.2s;
        }
        .rule-item:hover {
            background: var(--bg-card-hover);
            transform: translateX(4px);
        }
        .rule-item strong { color: var(--accent-purple); font-weight: 700; }
        .rule-item .tag {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-left: 0.5rem;
            vertical-align: middle;
        }
        .tag.ban { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
        .tag.warn { background: rgba(163, 230, 53, 0.15); color: var(--green-toxic); }
        .tag.info { background: rgba(119, 74, 255, 0.15); color: var(--accent-purple); }

        /* Таблица наказаний */
        .penalty-table-wrapper {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            margin-top: 1rem;
        }
        table.penalty-table { width: 100%; border-collapse: collapse; min-width: 600px; }
        table.penalty-table th, table.penalty-table td {
            padding: 1rem; text-align: left; border-bottom: 1px solid var(--border-color);
        }
        table.penalty-table th {
            background: var(--bg-secondary); color: var(--accent-purple);
            font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.5px;
        }
        table.penalty-table tr:last-child td { border-bottom: none; }
        table.penalty-table tr:hover td { background: rgba(119, 74, 255, 0.05); }

        /* Блок согласия */
        .accept-block {
            text-align: center;
            margin-top: 2rem;
            padding: 2rem;
            background: rgba(16, 185, 129, 0.06);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: var(--radius-xl);
        }
        .btn-solid {
            background: var(--accent-purple); color: #fff;
            padding: 0.8rem 2rem; border: none; border-radius: var(--radius-md);
            font-weight: 700; font-size: 1rem; cursor: pointer;
            transition: all var(--transition-fast);
        }
        .btn-solid:hover { background: var(--accent-purple-hover); transform: translateY(-2px); box-shadow: 0 8px 20px var(--purple-glow); }

        @media (max-width: 900px) {
            .rules-layout { grid-template-columns: 1fr; }
            .toc-nav { position: static; margin-bottom: 2rem; }
            .toc-nav ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
            .toc-link { border-left: none; border-bottom: 2px solid transparent; }
            .toc-link:hover, .toc-link.active { border-bottom-color: var(--accent-purple); transform: translateY(0); }
        }