.post-hero {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--gold-primary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    margin: 0 6px;
    color: var(--text-muted);
}

.post-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.post-meta i {
    color: var(--gold-primary);
}

.meta-sep {
    color: var(--border-color);
}

.post-content-section {
    padding: 40px 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}

.post-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-card h2 i {
    font-size: 1.1rem;
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.rate-box {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rate-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.rate-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.rate-change {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
}

.rate-change.up {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.rate-change.down {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.rate-change.same {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
}

.yesterday-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.yesterday-note i {
    color: var(--gold-primary);
    margin-right: 4px;
}

.waiting-card {
    text-align: center;
    padding: 50px 28px;
}

.waiting-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.waiting-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.chart-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: -12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.chart-container {
    height: 350px;
    position: relative;
}

.chart-summary {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.chart-stat {
    flex: 1;
    min-width: 140px;
    background: rgba(212, 168, 67, 0.06);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
}

.cs-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.cs-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.cs-value.up {
    color: #4ade80;
}

.cs-value.down {
    color: #f87171;
}

.cs-value.same {
    color: var(--text-muted);
}

.prediction-card {
    border-color: rgba(74, 222, 128, 0.2);
}

.prediction-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.prediction-disclaimer {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #f59e0b;
    line-height: 1.6;
}

.prediction-disclaimer i {
    margin-right: 4px;
}

.post-table {
    width: 100%;
    border-collapse: collapse;
}

.post-table thead {
    background: rgba(212, 168, 67, 0.1);
}

.post-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-primary);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.post-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-table tr:hover td {
    background: rgba(212, 168, 67, 0.03);
}

.hindi-text {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-tag {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.post-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.related-posts-list {
    list-style: none;
}

.related-posts-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.related-posts-list li:last-child {
    border-bottom: none;
}

.related-posts-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
}

.related-posts-list a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.rp-rate {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.quick-info-list {
    list-style: none;
}

.quick-info-list li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list strong {
    color: var(--text-primary);
    margin-right: 6px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    padding: 6px 0;
}

.sidebar-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--gold-primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.post-card-link {
    text-decoration: none;
    color: inherit;
}

.post-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-preview-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.1);
}

.ppc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ppc-city {
    color: var(--gold-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.ppc-city i {
    margin-right: 4px;
}

.ppc-date {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.post-preview-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ppc-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.ppc-rates {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ppc-rate-item {
    flex: 1;
    background: rgba(212, 168, 67, 0.06);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.ppc-rate-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ppc-rate-val {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.ppc-readmore {
    color: var(--gold-primary);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.post-preview-card:hover .ppc-readmore {
    gap: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.page-link.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #0a0a14;
    font-weight: 700;
}

.page-dots {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 0 4px;
}

@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-hero h1 {
        font-size: 1.6rem;
    }

    .rate-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rate-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
    }

    .rate-value {
        font-size: 1.2rem;
    }

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

    .post-sidebar {
        grid-template-columns: 1fr;
    }

    .chart-container {
        height: 250px;
    }

    .post-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .post-hero h1 {
        font-size: 1.3rem;
    }

    .post-card h2 {
        font-size: 1.05rem;
    }

    .rate-value {
        font-size: 1.1rem;
    }

    .chart-container {
        height: 200px;
    }

    .ppc-rates {
        gap: 6px;
    }

    .ppc-rate-val {
        font-size: 0.78rem;
    }
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.guide-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
}
.guide-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}
.guide-item h3 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}
.guide-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.purity-table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}
.purity-table {
    width: 100%;
    border-collapse: collapse;
}
.purity-table th {
    background: var(--bg-dark);
    color: var(--gold-primary);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--gold-primary);
}
.purity-table td {
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}
.purity-table tr:hover td {
    background: rgba(212, 168, 67, 0.05);
}

.invest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.invest-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
}
.invest-item h3 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}
.invest-item h3 i {
    margin-right: 6px;
}
.invest-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}
.investment-card > p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}
