﻿/* ========================================
   Vibrant Gradient Theme - Static Pages
   static-page.css - About, privacy, DMCA, FAQ, etc.
   ======================================== */

.tp4-static-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

.tp4-static-page-card {
    background: var(--tp4-bg-card);
    backdrop-filter: blur(var(--tp4-blur));
    -webkit-backdrop-filter: blur(var(--tp4-blur));
    border: 1px solid var(--tp4-border);
    border-radius: var(--tp4-radius-lg);
    padding: 32px 24px;
}

.tp4-static-page-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tp4-border);
}

.tp4-post-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    background: var(--tp4-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tp4-static-page-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--tp4-text-secondary);
}

.tp4-static-page-body p {
    margin: 8px 0;
}

.tp4-static-page-body a {
    color: var(--tp4-accent);
}

.tp4-static-page-body a:hover {
    color: #fff;
    text-decoration: underline;
}

.tp4-static-page-body blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--tp4-accent-alt);
    background: rgba(102, 126, 234, 0.08);
    border-radius: 0 var(--tp4-radius-sm) var(--tp4-radius-sm) 0;
    color: var(--tp4-text-secondary);
    font-style: italic;
}

.tp4-static-page-body strong {
    color: var(--tp4-text-primary);
}

/* Sections */
.tp4-static-section {
    margin: 20px 0;
}

.tp4-static-section-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--tp4-text-primary);
    margin: 0 0 8px;
    padding-left: 12px;
    position: relative;
}

.tp4-static-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--tp4-gradient-primary);
    border-radius: 2px;
}

.tp4-static-section-content {
    color: var(--tp4-text-secondary);
    line-height: 1.8;
}

/* FAQ */
.tp4-static-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tp4-static-faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--tp4-border);
    border-radius: var(--tp4-radius);
    padding: 16px;
    transition: var(--tp4-transition);
}

.tp4-static-faq-item:hover {
    border-color: var(--tp4-border-hover);
    background: rgba(255, 255, 255, 0.06);
}

.tp4-static-faq-item q {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--tp4-text-primary);
    margin-bottom: 8px;
    quotes: none;
    position: relative;
    padding-left: 20px;
}

.tp4-static-faq-item q::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--tp4-accent);
    background: rgba(240, 147, 251, 0.15);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.tp4-static-faq-answer {
    color: var(--tp4-text-secondary);
    font-size: 13px;
    line-height: 1.7;
    padding-left: 20px;
}

.tp4-static-faq-answer p {
    margin: 4px 0;
}

/* Link buttons and lists */
.tp4-static-link-btn {
    display: inline-block;
    padding: 8px 24px;
    background: var(--tp4-gradient-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--tp4-transition);
    margin: 4px 0;
}

.tp4-static-link-btn:hover {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

.tp4-static-link-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.tp4-static-link-list a {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    color: var(--tp4-accent-alt);
    font-size: 12px;
    transition: var(--tp4-transition);
    text-decoration: none;
}

.tp4-static-link-list a:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #fff;
}

@media screen and (max-width: 824px) {
    .tp4-static-page-card {
        padding: 20px 16px;
    }

    .tp4-post-title {
        font-size: 20px;
    }

    .tp4-static-section-title {
        font-size: 15px;
    }
}
