/* ============================================
   NVIDIA ARTICLE - CREATIVE PREMIUM CSS
   BroBillionaire Premium Theme
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --gold-primary: #C9A227;
    --gold-light: #F4E4A6;
    --gold-dark: #b8911f;
    --green-nvidia: #76b900;
    --dark-bg: #0a0a0a;
    --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gold-gradient: linear-gradient(135deg, #C9A227 0%, #F4E4A6 50%, #C9A227 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ===== READING PROGRESS BAR ===== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    z-index: 10000;
    animation: shimmerProgress 2s linear infinite;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.8),
        0 0 40px rgba(201, 162, 39, 0.5);
}

@keyframes shimmerProgress {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ===== ARTICLE NAVIGATION ===== */
.article-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.article-nav:hover {
    background: rgba(10, 10, 10, 0.98);
}

.back-link {
    position: relative;
    overflow: hidden;
}

.back-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.back-link:hover::before {
    width: 100%;
}

.share-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.share-btn:hover::before {
    width: 200px;
    height: 200px;
}

.share-btn i,
.share-btn span {
    position: relative;
    z-index: 1;
}

/* ===== ARTICLE HEADER ENHANCEMENTS ===== */
.article-header {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-category-badge {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: default;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.article-category-badge:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.8);
}

.article-category-badge .category-icon {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.article-main-title {
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(201, 162, 39, 0.6),
            0 0 60px rgba(201, 162, 39, 0.4);
    }
}

.article-main-title .gold-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    to {
        background-position: 200% center;
    }
}

.article-meta-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.article-meta-item:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.article-meta-item i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== TRUST SIGNALS ===== */
.trust-signals {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.trust-item {
    transition: all 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    color: var(--gold-primary);
    transform: scale(1.05);
}

.trust-icon {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* ===== KEY TAKEAWAYS BOX ===== */
.key-takeaways-box {
    position: relative;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.key-takeaways-box::after {
    content: '💎';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.05;
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.key-takeaways-box h3 {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.takeaways-list {
    list-style: none;
    padding: 0;
}

.takeaways-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.takeaways-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.takeaways-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.takeaways-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.takeaways-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.takeaways-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.takeaways-list li:nth-child(6) {
    animation-delay: 0.6s;
}

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

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

.takeaways-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.takeaways-list li:hover::before {
    transform: translateX(8px) scale(1.2);
    animation: pulseArrow 0.6s ease-in-out infinite;
}

@keyframes pulseArrow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== TABLE OF CONTENTS ===== */
.article-toc {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.article-toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    animation: slideRight 3s ease-in-out infinite;
}

@keyframes slideRight {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.article-toc h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.article-toc ul {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
}

.article-toc li {
    margin: 0.75rem 0;
    transition: all 0.3s ease;
}

.article-toc li:hover {
    transform: translateX(10px);
}

.article-toc a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-toc a:hover {
    color: var(--gold-primary);
}

.toc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.article-toc li:hover .toc-number {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: rotate(360deg);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
}

/* ===== HOT TAKE BOX ===== */
.hot-take-box {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    transition: all 0.4s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hot-take-box:hover {
    transform: translateY(-8px) scale(1.02);
}

.hot-take-box::after {
    content: '🔥';
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    animation: floatFire 4s ease-in-out infinite;
}

@keyframes floatFire {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hot-take-box h4 {
    animation: flashText 3s ease-in-out infinite;
}

@keyframes flashText {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.3);
}

.stat-card.featured {
    border: 2px solid rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(118, 185, 0, 0.05));
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.2);
}

.stat-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ===== INSIGHT BOX ===== */
.insight-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.insight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
    animation: slideVertical 2s ease-in-out infinite;
}

@keyframes slideVertical {

    0%,
    100% {
        transform: translateY(-100%);
        opacity: 0.3;
    }

    50% {
        transform: translateY(100%);
        opacity: 1;
    }
}

.insight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.4);
}

.insight-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.insight-box h4 i {
    animation: pulse 2s ease-in-out infinite;
}

.insight-box.warning {
    border-color: rgba(239, 68, 68, 0.4);
}

.insight-box.warning::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.insight-box.warning h4 {
    color: #ef4444;
}

/* ===== CUSTOMER GRID ===== */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.customer-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.customer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.customer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.customer-card:nth-child(3) {
    animation-delay: 0.3s;
}

.customer-card:nth-child(4) {
    animation-delay: 0.4s;
}

.customer-card:nth-child(5) {
    animation-delay: 0.5s;
}

.customer-card:nth-child(6) {
    animation-delay: 0.6s;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.customer-card:hover::before {
    transform: scaleX(1);
}

.customer-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.3);
}

.customer-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 3s ease-in-out infinite;
}

.customer-spend {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 1rem 0;
}

/* ===== FINANCIAL STATS ===== */
.financial-stats {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.financial-stats::before {
    content: '📊';
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 150px;
    opacity: 0.03;
}

.financial-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.financial-row:last-child {
    border-bottom: none;
}

.financial-row:hover {
    background: rgba(201, 162, 39, 0.05);
    padding-left: 2rem;
    border-radius: 12px;
}

.financial-metric {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

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

.financial-growth {
    color: #2ecc71;
    font-weight: 700;
}

/* ===== REVENUE BREAKDOWN ===== */
.revenue-breakdown {
    list-style: none;
    padding: 0;
}

.revenue-breakdown li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.revenue-breakdown li:last-child {
    border-bottom: none;
}

.revenue-breakdown li::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.revenue-breakdown li:hover {
    background: rgba(201, 162, 39, 0.05);
    padding-left: 3rem;
    border-radius: 8px;
}

/* ===== VALUATION METRICS ===== */
.valuation-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.valuation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.valuation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.3);
}

.valuation-card h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.valuation-card ul {
    list-style: none;
    padding: 0;
}

.valuation-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.valuation-card li:last-child {
    border-bottom: none;
}

.valuation-card li:hover {
    padding-left: 1rem;
    color: var(--gold-primary);
}

.valuation-card.comparison {
    border-color: rgba(59, 130, 246, 0.4);
}

.valuation-card.comparison h4 {
    color: #3b82f6;
}

/* ===== CASE LISTS ===== */
.case-list {
    list-style: none;
    padding: 0;
}

.case-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.case-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 900;
    font-size: 1.5rem;
}

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

/* ===== RISK CARDS ===== */
.risk-card {
    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: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.risk-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.risk-card::before {
    content: '⚠️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.05;
}

.risk-card h4 {
    color: #ef4444;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.risk-card h4 i {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== ALLOCATION GUIDE ===== */
.allocation-guide {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.allocation-tier {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.allocation-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
}

.allocation-tier:hover {
    transform: translateX(10px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.2);
}

.allocation-tier.featured {
    border: 3px solid rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(118, 185, 0, 0.05));
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.allocation-tier.featured::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    animation: spin 4s linear infinite;
}

.allocation-tier h4 {
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ===== VERDICT BOX ===== */
.verdict-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(118, 185, 0, 0.1));
    border: 3px solid rgba(201, 162, 39, 0.5);
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(201, 162, 39, 0.4);
    animation: scaleIn 1s ease-out;
}

.verdict-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.verdict-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
}

.verdict-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.verdict-stars {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.verdict-score {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

.verdict-header h3 {
    color: var(--gold-primary);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.verdict-body {
    position: relative;
    z-index: 2;
}

.verdict-body ul {
    list-style: none;
    padding: 0;
}

.verdict-body ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.verdict-body ul li:hover {
    transform: translateX(10px);
    color: var(--gold-primary);
}

.action-plan {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.action-plan li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.action-plan li:last-child {
    border-bottom: none;
}

.action-plan li::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border-radius: 50%;
    font-weight: 900;
}

/* ===== FINAL THOUGHT ===== */
.final-thought {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--gold-primary);
    border-radius: 0 15px 15px 0;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.final-thought::before {
    content: '💡';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

/* ===== RELATED ARTICLES ===== */
.related-articles-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.05), transparent);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-article-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.related-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.6s ease;
}

.related-article-card:hover::before {
    left: 100%;
}

.related-article-card:hover {
    transform: translateY(-15px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 25px 70px rgba(201, 162, 39, 0.3);
}

.related-category {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-article-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #ffffff;
}

.related-article-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.related-article-card:hover .read-more {
    gap: 1rem;
}

/* ===== SHARE SECTION ===== */
.article-share-section {
    text-align: center;
    padding: 4rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 4rem 0;
}

.share-buttons-horizontal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.share-btn-icon {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.share-btn-icon:hover::before {
    width: 200px;
    height: 200px;
}

.share-btn-icon i {
    position: relative;
    z-index: 1;
}

.share-btn-icon.twitter {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.share-btn-icon.linkedin {
    border-color: #0077B5;
    color: #0077B5;
}

.share-btn-icon.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.share-btn-icon.copy {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.share-btn-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {

    .stats-grid,
    .customer-grid,
    .valuation-metrics,
    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .financial-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .verdict-box {
        padding: 2rem;
    }

    .verdict-score {
        font-size: 2rem;
    }

    .final-thought::before {
        display: none;
    }

    .share-buttons-horizontal {
        flex-direction: column;
    }

    .share-btn-icon {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-main-title {
        font-size: 1.8rem !important;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .allocation-tier,
    .risk-card {
        padding: 1.5rem;
    }
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SELECTION ===== */
::selection {
    background: rgba(201, 162, 39, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(201, 162, 39, 0.3);
    color: #ffffff;
}

/* ===== PRINT STYLES ===== */
@media print {

    .article-nav,
    .article-share-section,
    .related-articles-section {
        display: none;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}