/* ÁSZF Modal Stílusok */
.aszf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.aszf-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.aszf-modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.aszf-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.aszf-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.aszf-modal-header p {
    font-size: 0.95rem;
    margin: 8px 0 0 0;
    opacity: 0.9;
}

.aszf-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.aszf-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.aszf-modal-body {
    padding: 40px;
    color: #32325d;
}

.aszf-modal-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #32325d;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #3b9dd8;
}

.aszf-modal-body h3:first-child {
    margin-top: 0;
}

.aszf-modal-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin: 20px 0 10px 0;
}

.aszf-modal-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

.aszf-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.aszf-modal-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

.aszf-modal-body strong {
    color: #32325d;
    font-weight: 600;
}

.aszf-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.aszf-intro p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Scrollbar stílus */
.aszf-modal-content::-webkit-scrollbar {
    width: 8px;
}

.aszf-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.aszf-modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.aszf-modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .aszf-modal-header {
        padding: 25px 30px;
    }

    .aszf-modal-header h2 {
        font-size: 1.5rem;
    }

    .aszf-modal-body {
        padding: 30px 25px;
    }

    .aszf-modal-body h3 {
        font-size: 1.2rem;
    }

    .aszf-modal-body h4 {
        font-size: 1rem;
    }

    .aszf-modal-body p,
    .aszf-modal-body li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .aszf-modal.show {
        padding: 10px;
    }

    .aszf-modal-header {
        padding: 20px;
    }

    .aszf-modal-header h2 {
        font-size: 1.3rem;
    }

    .aszf-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .aszf-modal-body {
        padding: 25px 20px;
    }
}
