/* =====================================================
   MEVZUAT PAGE - KAT MÜLKİYETİ KANUNU
   Premium Dark Theme Legislation Display
===================================================== */

.mev-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

/* Header */
.mev-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mev-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mev-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mev-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.8rem;
}

.mev-meta i {
    color: #6366f1;
    margin-right: 6px;
}

/* İçindekiler Grid */
.mev-toc {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2.5rem;
}

.mev-toc-title {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mev-toc-title i {
    color: #6366f1;
}

.mev-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
}

.mev-toc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 0.8rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    color: #a5b4fc;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.mev-toc-item:hover {
    background: rgba(99, 102, 241, 0.15);
    color: #c7d2fe;
    transform: translateY(-2px);
}

.mev-toc-num {
    width: 22px;
    height: 22px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.mev-toc-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mev-toc-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
}

.mev-toc-pdf:hover {
    color: white;
}

/* Content */
.mev-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Sections */
.mev-section {
    scroll-margin-top: 100px;
}

.mev-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: #a5b4fc;
    text-align: center;
    padding: 1rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.mev-section-title span {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 0.25rem;
}

/* Articles */
.mev-madde {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.mev-madde h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #818cf8;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mev-madde p {
    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    text-align: justify;
}

.mev-madde p:last-child {
    margin-bottom: 0;
}

.mev-madde strong {
    color: #f8fafc;
}

.mev-madde em {
    color: #a5b4fc;
    font-style: normal;
}

/* Notice */
.mev-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
}

.mev-notice i {
    color: #f59e0b;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mev-notice p {
    color: #fcd34d;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.mev-notice a {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
    .mev-container {
        padding: 1.5rem 1rem 3rem;
    }

    .mev-toc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mev-toc-text {
        display: none;
    }

    .mev-toc-item {
        justify-content: center;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .mev-header h1 {
        font-size: 1.25rem;
    }

    .mev-toc-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .mev-madde {
        padding: 0.85rem 1rem;
    }

    .mev-madde h3 {
        font-size: 0.85rem;
    }

    .mev-madde p {
        font-size: 0.75rem;
    }
}