/* APV Styles */
.apv-intro-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.apv-intro-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.apv-intro-card > p {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.apv-intro-card em {
    display: block;
    margin-top: 30px;
    padding: 25px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    font-style: normal;
    color: #856404;
}

.straf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.straf-item {
    padding: 20px;
    background: #0a0a0a;
    border-radius: 10px;
    border-left: 4px solid var(--purple);
    transition: all 0.3s;
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-left: 4px solid var(--purple);
}

.straf-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
}

.straf-item strong {
    color: var(--purple);
    font-weight: 700;
}

/* Dropdown Artikel */
.dropdown-artikel {
    background: #1a1a1a;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.dropdown-artikel:hover {
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
    border-color: var(--purple);
}

.dropdown-header-artikel {
    padding: 25px 30px;
    background: var(--purple);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.dropdown-header-artikel:hover {
    background: var(--dark-purple);
}

.artikel-badge {
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 5px;
}

.artikel-name {
    flex: 1;
    margin: 0 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.dropdown-arrow {
    transition: transform 0.3s;
    font-size: 1.3rem;
}

.dropdown-artikel.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
}

.dropdown-artikel.active .dropdown-body {
    max-height: 2500px;
}

.artikel-content {
    padding: 35px;
    line-height: 1.9;
    color: #ffffff;
    white-space: pre-line;
    font-size: 1rem;
}

.artikel-straf-box {
    padding: 25px 35px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    color: #856404;
    font-size: 1.05rem;
}

.artikel-straf-box strong {
    color: #f39c12;
    font-weight: 700;
}

@media (max-width: 768px) {
    .straf-grid {
        grid-template-columns: 1fr;
    }
}
