/* ===============================
   ADDITIONAL CUSTOM STYLES
   =============================== */

/* Article Styles */
.ps-article {
    max-width: 800px;
    margin: 0 auto;
}

.ps-article-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--ps-dark);
    margin-bottom: 10px;
}

.ps-article-meta {
    display: flex;
    gap: 15px;
    color: var(--ps-text-light);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ps-border);
}

.ps-article-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ps-article-content h2, .ps-article-content h3 {
    color: var(--ps-dark);
    margin-top: 30px;
}

.ps-article-content p {
    margin-bottom: 18px;
}

.ps-article-content img {
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow-md);
}

/* FAQ Styles */
.ps-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ps-faq-item {
    background: var(--ps-bg-white);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--ps-shadow);
}

.ps-faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--ps-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    list-style: none;
}

.ps-faq-item summary::-webkit-details-marker {
    display: none;
}

.ps-faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--ps-primary);
    transition: transform 0.3s;
}

.ps-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.ps-faq-item summary:hover {
    background: var(--ps-bg);
}

.ps-faq-item p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--ps-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Widget Styles */
.ps-widget {
    background: var(--ps-bg-white);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--ps-shadow);
}

.ps-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ps-dark);
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ps-primary);
    margin-bottom: 15px;
}

/* Sidebar */
.ps-sidebar {
    position: sticky;
    top: 90px;
}

/* Scroll to top */
.ps-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ps-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--ps-shadow-lg);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
}

.ps-scroll-top:hover {
    background: var(--ps-primary-dark);
    transform: translateY(-3px);
}

.ps-scroll-top.visible {
    display: flex;
}

/* Cookie Notice */
.ps-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ps-dark);
    color: #fff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.ps-cookie-notice p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
    flex: 1;
}

.ps-cookie-accept {
    background: var(--ps-primary);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.ps-cookie-accept:hover {
    background: var(--ps-primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ps-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .ps-header, .ps-footer, .ps-hero, .ps-warning-box, 
    .pf-vpn-banner, .pf-filters-wrap, .pf-export-bar, 
    .pf-pagination, .ps-cookie-notice {
        display: none !important;
    }
    
    .pf-proxy-table {
        font-size: 10px;
    }
}