/* ===========================
   Content Pages — Premium Dark Theme
   =========================== */

.content-page {
    max-width: 680px;
    text-align: left;
    padding-bottom: 3rem;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted, rgba(255, 255, 255, 0.35));
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.back-link:hover {
    color: var(--text-primary, #ffffff);
    transform: translateX(-4px);
}

/* Page Title */
.page-title-section {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.page-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-date {
    font-size: 0.8rem;
    color: var(--text-muted, rgba(255, 255, 255, 0.35));
    font-weight: 400;
}

/* Content Card */
.content-card {
    background: var(--glass-bg, rgba(15, 21, 40, 0.65));
    backdrop-filter: blur(40px) saturate(1.5);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.06));
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.2rem;
    animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intro-text {
    font-size: 0.92rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.65));
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Section */
.section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 0.6rem;
}

.section-num {
    color: var(--accent-primary, #6c63ff);
    font-weight: 700;
}

.section p {
    font-size: 0.88rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.65));
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.section ul {
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0 0;
}

.section ul li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.88rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.65));
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

.section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-primary, #6c63ff);
}

/* Highlight Box */
.highlight-box {
    background: rgba(240, 192, 64, 0.06);
    border-left: 3px solid rgba(240, 192, 64, 0.5);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border-bottom: none;
}

.highlight-box p {
    color: rgba(240, 200, 100, 0.9);
    font-weight: 500;
}

.highlight-box i {
    color: rgba(240, 192, 64, 0.8);
    margin-right: 0.4rem;
}

/* Contact Section */
.contact-section {
    background: rgba(108, 99, 255, 0.06);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    border-bottom: none;
}

.contact-section h2 {
    color: #a5a0ff;
}

.contact-email, .contact-detail {
    font-size: 0.9rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.65));
    margin-top: 0.5rem;
}

.contact-email i, .contact-detail i {
    color: var(--accent-primary, #6c63ff);
    margin-right: 0.5rem;
    width: 18px;
    text-align: center;
}

.contact-email a, .contact-detail a {
    color: #a5a0ff;
    text-decoration: none;
    font-weight: 500;
}

.contact-email a:hover, .contact-detail a:hover {
    text-decoration: underline;
    color: #c4bfff;
}

/* Profile Mini (Refund Policy) */
.profile-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(108, 99, 255, 0.05);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.profile-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.profile-mini-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary, #6c63ff);
}

.profile-mini h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 0.15rem;
}

.profile-mini p {
    font-size: 0.78rem;
    color: var(--text-muted, rgba(255, 255, 255, 0.35));
    line-height: 1.4;
}

.mini-social-icons {
    display: flex;
    gap: 0.6rem;
}

.mini-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(108, 99, 255, 0.12);
    border: 1px solid rgba(108, 99, 255, 0.15);
    color: #a5a0ff;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-social-icons a:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
    color: #c4bfff;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-item.full-width {
    grid-column: 1 / -1;
}

.contact-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted, rgba(255, 255, 255, 0.35));
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary, #ffffff);
    line-height: 1.5;
}

.contact-value a {
    color: #a5a0ff;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
    color: #c4bfff;
}

/* About Hero */
.about-hero {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary, #6c63ff);
    margin-bottom: 0.8rem;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

.about-hero h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
}

/* Pay Button */
.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary, #6c63ff), #8b5cf6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
    border: none;
}

.pay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.45);
}

.pay-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 480px) {
    .content-page {
        max-width: 100%;
    }

    .content-card {
        padding: 1.3rem;
        border-radius: 16px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item.full-width {
        grid-column: auto;
    }

    .profile-mini {
        flex-direction: column;
        text-align: center;
    }
}
