/* Article-specific styles */
.home-link {
    color: white;
    text-decoration: none;
}

.article-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

/* Specific article header backgrounds */
.article-header.bitcoin {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.article-header.ethereum {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.article-header.defi {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.article-header.nft {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.article-content-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.article-body {
    padding: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2 {
    color: #1e3c72;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.article-body h3 {
    color: #2a5298;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

.expert-mention {
    background: linear-gradient(135deg, #e8f4fd, #d1ecf1);
    border: 2px solid #1e3c72;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.expert-mention h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.whatsapp-contact {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.whatsapp-contact:hover {
    transform: scale(1.05);
    color: white;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive for articles */
@media (max-width: 768px) {
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .article-body {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
}

/* Additional styles from inline CSS */
.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

.expert-mention {
    background: linear-gradient(135deg, #e8f4fd, #d1ecf1);
    border: 2px solid #1e3c72;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.expert-mention h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.whatsapp-contact {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.whatsapp-contact:hover {
    transform: scale(1.05);
    color: white;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}
