* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #E5E7EB;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
}

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

.social-icons a {
    color: #9CA3AF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gradient:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(212,175,55,0.4)
}

.social-icons a[href*="youtube"]:hover {
    color: #dc2626;
}

.social-icons a[href*="patreon"]:hover {
    color: #d4af37;
}

.social-icons a[href*="x.com"]:hover {
    color: #1DA1F2;
}

/* Main Content */
main {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

/* Video Section */
.video-section {
    margin-bottom: 3rem;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    background: rgba(31,41,55,0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(75,85,99,0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
}

.content-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Links */
a {
    color: #d4af37;
    text-decoration: underline;
    transition: all 0.3s ease;
}

a:hover {
    color: #e6c866;
    text-decoration: underline;
}

/* Images */
.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem auto;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.content-image.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.content-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Twitter Embeds */
.twitter-container {
    margin: 2rem auto;
    text-align: center;
}

/* Key Points */
.key-points {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

.key-points h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

/* Sources Section */
.sources-section {
    background: rgba(31,41,55,0.6);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

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

.source-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.source-item:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
}

.source-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    font-size: 1.5rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a[href*="youtube"]:hover {
    color: #dc2626;
}

.social-icons a[href*="patreon"]:hover {
    color: #d4af37;
}

.social-icons a[href*="x.com"]:hover {
    color: #1DA1F2;
}

.copyright {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: #0a0a0a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: #e6c866;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    main {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

/* Chart container */
.chart-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* New classes for inline styles */
.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.chart-title {
    color: #d4af37;
    margin-bottom: 1rem;
}

.chart-caption {
    margin-top: 1rem;
    color: #9CA3AF;
    font-style: italic;
}

.content-subtitle {
    color: #d4af37;
    margin: 1.5rem 0 0.5rem 0;
}

.sources-title {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-email {
    margin-top: 0.5rem;
    color: #d4af37;
}