/* Custom styles for Code of Conduct page */
.coc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.coc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coc-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coc-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.coc-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coc-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coc-section h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 12px var(--accent-primary);
}

.coc-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-main);
}

.coc-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.coc-section li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.coc-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.positive-examples,
.negative-examples {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.negative-examples {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
}

.examples-title {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.positive-examples .examples-title {
    color: var(--accent-primary);
}

.negative-examples .examples-title {
    color: #ef4444;
}

.contact-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}

.contact-info a:hover {
    color: #60a5fa;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .coc-container {
        padding: 1rem;
    }

    .coc-header h1 {
        font-size: 2rem;
    }

    .coc-section {
        padding: 1.5rem;
    }
}