/* ============================================
   ULTRA PREMIUM ARTICLE ENHANCEMENTS
   BroBillionaire - Premium Black & Gold Theme
   ============================================ */

/* Enhanced Typography for Maximum Readability */
.article-content {
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.92);
}

.article-content p {
    margin-bottom: 1.75rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
}

.article-content strong {
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
}

.article-content em {
    color: var(--gold-light, #E8D5A3);
    font-style: italic;
}

/* Enhanced Section Headers */
.section-header,
h2.section-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin: 5rem 0 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #C9A227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.3;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, transparent);
    border-radius: 2px;
}

/* Enhanced Subsection Headers */
.subsection-header,
h3.subsection-header {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 3.5rem 0 1.75rem;
    color: #C9A227;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.4;
}

.subsection-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 75%;
    background: linear-gradient(180deg, #C9A227, transparent);
    border-radius: 3px;
}

/* Premium Lists with Better Styling */
.key-points,
.article-list,
ul.key-points {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.key-points li,
.article-list li,
ul.key-points li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    transition: all 0.3s ease;
}

.key-points li:hover,
.article-list li:hover {
    padding-left: 3rem;
    background: rgba(201, 162, 39, 0.02);
    border-radius: 8px;
}

.key-points li::before,
.article-list li::before,
ul.key-points li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.key-points li:hover::before,
.article-list li:hover::before {
    transform: translateX(8px);
    color: #E8D5A3;
}

/* Enhanced Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(232, 213, 163, 0.03));
    border: 2px solid rgba(201, 162, 39, 0.25);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C9A227, #E8D5A3, #C9A227);
    animation: shimmer 3s infinite;
}

.highlight-box:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.15);
}

/* Bull Case Box */
.bull-case-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.03));
    border: 2px solid rgba(34, 197, 94, 0.25);
}

.bull-case-box::before {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

/* Bear Case Box */
.bear-case-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.03));
    border: 2px solid rgba(239, 68, 68, 0.25);
}

.bear-case-box::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* Enhanced Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
}

.warning-box::before {
    content: '⚠';
    position: absolute;
    top: -18px;
    left: 25px;
    font-size: 2.5rem;
    background: #0d0d0d;
    padding: 0 12px;
    line-height: 1;
}

.warning-box h4 {
    color: #ef4444;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-box-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Enhanced Tables */
.data-table,
.cheat-table table,
table.data-table {
    width: 100%;
    margin: 2.5rem 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.data-table thead,
.cheat-table thead {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(232, 213, 163, 0.15));
}

.data-table th,
.cheat-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    color: #C9A227;
    border-bottom: 3px solid rgba(201, 162, 39, 0.3);
}

.data-table td,
.cheat-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.data-table tbody tr,
.cheat-table tbody tr {
    transition: all 0.3s ease;
}

.data-table tbody tr:hover,
.cheat-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.06);
    transform: scale(1.01);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.08);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff, #C9A227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* Enhanced Blockquotes */
blockquote,
.article-quote {
    border-left: 5px solid #C9A227;
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    margin: 3.5rem 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.06), transparent);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.35rem;
    position: relative;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

blockquote::before,
.article-quote::before {
    content: '"';
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 5rem;
    color: rgba(201, 162, 39, 0.25);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

blockquote footer,
.article-quote footer {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Enhanced Article Header */
.article-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 140px 0 80px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(201, 162, 39, 0.12), transparent 50%);
}

.article-header-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.article-title,
h1.article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.article-intro {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: rgba(201, 162, 39, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 16px;
    font-weight: 400;
}

/* Featured Badge */
.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(232, 213, 163, 0.2));
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 2rem;
}

/* Article Meta */
.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.meta-item i {
    color: #C9A227;
    font-size: 1rem;
}

/* Key Takeaways Box */
.key-takeaways-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(232, 213, 163, 0.05));
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.key-takeaways-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C9A227, #E8D5A3, #C9A227);
    animation: shimmer 3s infinite;
}

.takeaway-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(201, 162, 39, 0.2);
}

.takeaway-header i {
    font-size: 2rem;
    color: #C9A227;
}

.takeaway-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C9A227;
    font-family: 'Playfair Display', serif;
}

.takeaway-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.takeaway-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.takeaway-list li:hover {
    background: rgba(201, 162, 39, 0.03);
    padding-left: 3.5rem;
}

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

.takeaway-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: 900;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.takeaway-list li:hover::before {
    transform: scale(1.2);
}

/* Example Box */
.example-box {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    transition: all 0.3s ease;
}

.example-box:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.1);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.example-icon {
    font-size: 1.75rem;
}

.example-header span:last-child {
    font-weight: 700;
    font-size: 1.35rem;
    color: #C9A227;
}

/* FAQ Section - Styles moved to faq-common.css */

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(232, 213, 163, 0.05));
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 4rem;
    margin: 5rem 0;
    text-align: center;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #C9A227, #E8D5A3);
    color: #0d0d0d;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, #E8D5A3, #C9A227);
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, #E8D5A3);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(232, 213, 163, 0.03));
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.conclusion-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #C9A227;
}

.conclusion-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Shimmer Animation */
@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Link Styling */
.article-content a {
    color: #C9A227;
    text-decoration: underline;
    text-decoration-color: rgba(201, 162, 39, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #E8D5A3;
    text-decoration-color: rgba(232, 213, 163, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .article-title,
    h1.article-title {
        font-size: 2.25rem !important;
    }

    .section-header,
    h2.section-header {
        font-size: 1.875rem !important;
    }

    .subsection-header,
    h3.subsection-header {
        font-size: 1.5rem !important;
    }

    .article-content,
    .article-content p {
        font-size: 1rem !important;
    }

    .article-intro {
        font-size: 1.125rem !important;
        padding: 1.5rem !important;
    }

    blockquote,
    .article-quote {
        font-size: 1.125rem !important;
        padding: 1.5rem 1.5rem 1.5rem 2.5rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-value {
        font-size: 2rem !important;
    }

    .highlight-box,
    .key-takeaways-box,
    .warning-box,
    .example-box {
        padding: 1.5rem !important;
    }

    .cta-section {
        padding: 2.5rem 1.5rem !important;
    }

    .cta-section h3 {
        font-size: 1.875rem !important;
    }

    .data-table,
    .cheat-table {
        font-size: 0.875rem !important;
        overflow-x: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {

    .article-title,
    h1.article-title {
        font-size: 1.75rem !important;
    }

    .section-header,
    h2.section-header {
        font-size: 1.5rem !important;
    }

    .stat-value {
        font-size: 1.75rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
    }

    .cta-btn {
        width: 100% !important;
    }
}

/* Print Styles */
@media print {

    .article-header,
    .cta-section,
    .reading-progress-bar {
        display: none !important;
    }

    .article-content {
        color: #000 !important;
    }
}