/*
Theme Name: VTrader News
Theme URI: https://vtrader.io
Description: Custom WordPress theme for VTrader cryptocurrency news and education hub
Version: 1.0.1
Author: VTrader
Author URI: https://vtrader.io
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vtrader-news
Tags: cryptocurrency, news, blog, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Import Inter Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Ridley Grotesk */
@font-face {
    font-family: 'Ridley Grotesk';
    src: url('assets/fonts/ridley-grotesk/Ridley Grotesk Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ridley Grotesk';
    src: url('assets/fonts/ridley-grotesk/Ridley Grotesk 600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ridley Grotesk';
    src: url('assets/fonts/ridley-grotesk/Ridley Grotesk Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Satoshi */
@font-face {
    font-family: 'Satoshi';
    src: url('assets/fonts/satoshi/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/fonts/satoshi/Satoshi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

/* Root Variables - VTrader Brand Colors */
:root {
    --color-midnight: #1B0247;
    --color-purple-deep: #6B46C1;
    --color-purple-bright: #9333EA;
    --color-white: #FFFFFF;
    --color-gray-light: rgba(255, 255, 255, 0.7);
    
    /* Typography - Inter font (Ridley Grotesk alternative) */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-ridley: 'Ridley Grotesk', 'Inter', sans-serif;
	--font-satoshi: 'Satoshi', 'Inter', sans-serif;
    
    /* Exact Figma Font Sizes */
    --text-h1: 96px;
    --text-h2: 72px;
    --text-h3: 38px;
    --text-h4: 32px;
    --text-h5: 28px;
    --text-body-large: 20px;
    --text-body-medium: 18px;
    --text-body-small: 16px;
    --text-card-title: 28px;
    --text-mobile-title: 28px;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background: #1B0247; /* Solid midnight purple instead of gradient */
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--text-h1);
    line-height: 1.25; /* 120px / 96px from Figma */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h2 {
    font-size: var(--text-h2);
    line-height: 1.67; /* 120px / 72px from Figma */
    font-weight: 700;
}

h3 {
    font-size: var(--text-h3);
    line-height: 1.42; /* ~54px / 38px from Figma */
    font-weight: 600;
}

h4 {
    font-size: var(--text-h4);
    line-height: 1.47; /* ~47px / 32px */
    font-weight: 600;
}

h5 {
    font-size: var(--text-h5);
    line-height: 1.46; /* ~41px / 28px */
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-light);
    font-size: var(--text-body-medium);
    line-height: 1.67; /* 150% */
}

.text-large {
    font-size: var(--text-body-large);
    line-height: 1.5;
}

.text-small {
    font-size: var(--text-body-small);
    line-height: 1.5;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-purple-bright);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-purple-deep);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.site-header {
    padding: var(--spacing-lg) 0;
    background: transparent;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-navigation ul {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navigation li {
    margin: 0;
}

.site-navigation a {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-white);
    transition: opacity 0.3s ease;
}

.site-navigation a:hover {
    opacity: 0.8;
}

.header-actions .btn-primary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 32px;
    font-size: 16px;
}

.header-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: none;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 350px;
    text-align: center;
    position: relative;
    background-color: #1B0247;
    background-image: url('http://vtradernews.local/wp-content/uploads/2026/02/bg3-scaled.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(147, 51, 234, 0.3);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-ridley);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Feature Cards Grid - Overlaying Hero */
.features-section {
    margin-top: -180px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-section {
        margin-top: -100px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.feature-card {
    background: rgba(20, 15, 48, 0.85);
    backdrop-filter: blur(20px);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.4);
    border-color: rgba(147, 51, 234, 0.6);
    background: rgba(20, 15, 48, 0.95);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
}

.feature-icon i {
    color: white;
}

.feature-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 600;
    color: #FFFFFF;
}

.feature-description {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* Article Cards */
.article-card {
    border: 1px solid transparent !important;
    background: 
        linear-gradient(145deg, rgba(30, 20, 60, 0.9), rgba(20, 10, 50, 0.95)) padding-box,
        linear-gradient(145deg, rgba(167, 139, 250, 0.4), rgba(109, 40, 217, 0.2)) border-box;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card .article-content {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card .article-date,
.article-card .article-read-time,
.article-card .separator {
    color: #ffffff !important;
}

.article-card .article-read-more {
    margin-top: auto;
    display: block;
    text-align: center;
    padding-top: 20px;
    color: #A78BFA;
    font-weight: 600;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: var(--spacing-md);
}

.article-badge {
    display: inline-block;
    background: var(--color-purple-bright);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.article-title {
    font-size: var(--text-card-title);
    line-height: 1.46; /* 130% from Figma */
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    font-weight: 600;
}

.article-meta {
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

/* Card Title */
.card-title,
.feature-title {
    font-size: var(--text-card-title);
    line-height: 1.46;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: rgba(27, 2, 71, 0.9);
    padding: var(--spacing-3xl) 0 var(--spacing-md);
    margin-top: var(--spacing-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* Single Article Page */
.single-article {
    margin: 0 !important;
    padding: 0 !important;
}

.article-header {
    background: linear-gradient(135deg, #1B0247 0%, #2D0863 100%) !important;
    padding: 120px 0 40px !important;
    text-align: center !important;
    margin: 0 !important;
}

.article-header .container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-title {
    font-family: var(--font-ridley);
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.article-categories {
    margin-bottom: var(--spacing-md);
}

.article-header .article-title {
    font-size: var(--text-h2);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    font-size: var(--text-body-small);
    color: var(--color-gray-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.article-featured-image {
    background: var(--color-midnight);
    padding: 20px 0 0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.article-content-wrapper {
    padding: var(--spacing-2xl) 0;
}

.article-content {
    font-size: var(--text-body-large);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: var(--spacing-lg);
}

.article-content h2 {
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-lg);
}

.article-content h3 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.article-content li {
    margin-bottom: var(--spacing-sm);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}

.article-content blockquote {
    border-left: 4px solid var(--color-purple-bright);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    font-style: italic;
    color: var(--color-gray-light);
}

/* Related Articles */
.related-articles {
    padding: var(--spacing-3xl) 0;
    background: var(--color-midnight);
}

.related-articles .section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

/* Crypto Price Ticker */
.crypto-ticker {
    display: flex;
    height: 30px;
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 1001;
    align-items: center;
}

.ticker-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-purple-deep) 50%, var(--color-purple-bright) 100%);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 800;
    color: var(--color-white);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .ticker-label {
        width: 159px;
        font-size: 16px;
        font-weight: 600;
    }
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-flex;
    gap: 8px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 0.36px;
}

@media (min-width: 1024px) {
    .ticker-item {
        font-size: 16px;
        gap: 12px;
    }
}

.ticker-item img {
    width: 14px;
    height: 14px;
}

@media (min-width: 1024px) {
    .ticker-item img {
        width: 16px;
        height: 16px;
    }
}

.ticker-name {
    font-family: var(--font-ridley);
    font-weight: 400;
    font-size: 12px;
}

.ticker-price {
    font-family: var(--font-ridley);
    font-weight: 700;
    font-size: 12px;
    transition: color 0.3s ease;
}

.ticker-price.green {
    color: #00A05B;
}

.ticker-price.red {
    color: #F23545;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.5rem, 10vw, var(--text-h1));
    }
    
    h2 {
        font-size: clamp(2rem, 8vw, var(--text-h2));
    }
    
    h3 {
        font-size: clamp(1.5rem, 6vw, var(--text-h3));
    }
    
    h4 {
        font-size: clamp(1.25rem, 5vw, var(--text-h4));
    }
    
    h5 {
        font-size: clamp(1.125rem, 4vw, var(--text-h5));
    }
    
    p {
        font-size: var(--text-body-small);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 32px;
        --spacing-2xl: 48px;
        --spacing-3xl: 64px;
    }
}

/* News Section */
.news-section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--color-gray-light);
    font-size: var(--text-body-large);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.no-articles {
    text-align: center;
    padding: var(--spacing-3xl);
    grid-column: 1 / -1;
}

/* Categories Section */
.categories-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-midnight);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.category-card {
    background: rgba(27, 2, 71, 0.6);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.category-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: var(--text-h5);
}

.article-count {
    font-size: var(--text-body-small);
    color: var(--color-gray-light);
}

.site-footer {
    background: var(--color-midnight);
    margin-top: var(--spacing-3xl);
}

/* Newsletter Section */
.footer-newsletter {
    background: var(--color-midnight);
    padding: 10px 0 60px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.newsletter-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.newsletter-text p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-white);
    font-weight: 500;
}

.newsletter-form-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-primary);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 32px;
    background: var(--color-purple-bright);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--color-purple-deep);
    transform: translateY(-2px);
}

/* Academy CTA Section */
.footer-academy-cta {
    background: var(--color-white);
    padding: 24px 0;
}

.academy-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.academy-cta-content p {
    text-align: center;
    color: #1B0247;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
}

.btn-academy {
    background: transparent;
    color: #1B0247;
    border: 2px solid #1B0247;
    padding: 10px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-academy:hover {
    background: #1B0247;
    color: var(--color-white);
}

/* Newsletter Section */
.footer-newsletter {
    background: var(--color-midnight);
    padding: 60px 0;  
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.newsletter-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.newsletter-text p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
    font-weight: 500;
    margin: 0;
}

.newsletter-form-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 32px;
    background: var(--color-purple-bright);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--color-purple-deep);
}

/* Academy CTA Bar */
.footer-academy-cta {
    background: var(--color-white);
    padding: 20px 0;
}

.academy-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.academy-cta-content p {
    color: var(--color-midnight);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.btn-academy {
    display: inline-block;
    background: transparent;
    color: var(--color-midnight);
    border: 2px solid var(--color-midnight);
    padding: 10px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-academy:hover {
    background: var(--color-midnight);
    color: var(--color-white);
    opacity: 1;
}

/* Main Footer Grid */
.footer-main {
    background: var(--color-midnight);
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 2fr 2fr;
    gap: 48px;
    align-items: start;
}

/* Column 1 - Brand */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-brand .site-logo {
    margin-bottom: 4px;
}

.footer-col-brand .site-logo img {
    max-width: 250px;
    height: auto;
}

.fincen-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-gas-tracker {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-gas-tracker h4,
.footer-app-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.footer-gas-tracker p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

.footer-app-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-badges {
    display: flex;
    gap: 10px;
}

.app-badges img {
    height: 38px;
    width: auto;
}

/* Column 2 - Learn More */
.footer-col-learn h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-col-learn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-learn li {
    margin-bottom: 14px;
}

.footer-col-learn a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.footer-col-learn a:hover {
    color: var(--color-white);
    opacity: 1;
}

/* Columns 3 & 4 - Buy / Sell */
.footer-col-buy,
.footer-col-sell {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-buy h3,
.footer-col-sell h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.crypto-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 4px;
    border-radius: 8px;
    text-align: center;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-badge:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--color-purple-bright);
}

.btn-explore {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.bonus-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-purple-deep) 0%, var(--color-purple-bright) 100%);
    padding: 16px 20px;
    border-radius: 8px;
}

.bonus-icon {
    font-size: 22px;
}

.bonus-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
}

.bonus-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: var(--color-midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 16px;
    color: #dfe1e4;
    margin: 0;
}

.footer-bottom-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-bottom-socials a {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.footer-bottom-socials a:hover {
    opacity: 0.7;
}

.footer-bottom-socials img {
    width: 24px;
    height: 24px;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
    opacity: 1;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .newsletter-form-wrapper {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .academy-cta-content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .crypto-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hide Follow Us from brand column */
.footer-col-brand .footer-social {
    display: none !important;
}

/* GET $10 USDT - prevent text wrapping */
.bonus-badge {
    flex-wrap: nowrap;
}

.bonus-text {
    white-space: nowrap;
}

.bonus-subtext {
    white-space: nowrap;
}

/* Crypto coin icons */
.crypto-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.bonus-badge {
    display: block;
    padding: 0;
    background: none !important;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;

}

.bonus-badge .bonus-bg-image {
    width: 100%;
    height: auto;
    display: block;
	min-height: 40px;
}

.crypto-badge {
    gap: 6px;
}

/* ============================================
   TRADING HERO SECTION
   ============================================ */
.hero-section-trading {
    background: var(--color-midnight); 
    padding: 100px 0 1px;
    text-align: center;
    position: relative;
}

.hero-title-trading {
    font-family: var(--font-ridley);
    font-size: 72px;
    font-weight: 600; 
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description-trading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-cta-trading {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary-trading {
    background: #8B5CF6;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-trading:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary-trading {
    background: transparent;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary-trading:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.hero-badge-trading {
    display: inline-block;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 32px;
}

/* ============================================
   TRADING FEATURE CARDS
   ============================================ */

.features-section-trading {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.15) 50%, var(--color-midnight) 100%);
    padding: 0 0 60px;
    margin-top: -100px;
}

.features-grid-trading {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: -80px;
}

.feature-card-trading {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-trading:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon-trading {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #A78BFA;
}

.feature-title-trading {
    font-family: var(--font-ridley);
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feature-description-trading {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid-trading {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero-title-trading {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-section-trading {
        padding: 80px 0 100px;
    }
    
    .hero-title-trading {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .hero-description-trading {
        font-size: 16px;
        margin-bottom: 36px;
    }
    
    .hero-cta-trading {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }
    
    .btn-primary-trading,
    .btn-secondary-trading {
        width: 100%;
        padding: 16px 32px;
    }
    
    .features-grid-trading {
        grid-template-columns: 1fr;
        margin-top: -60px;
    }
    
    .feature-card-trading {
        padding: 32px 24px;
    }
}
.features-section-trading {
    padding-top: 250px;
}

/* ============================================
   TRENDING NOW SECTION
   ============================================ */

.trending-section {
    background: var(--color-midnight);
    padding: 80px 0;
}

.section-header-trending {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-trending h2 {
    font-family: var(--font-ridley);
    font-size: 72px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header-trending p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.trending-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

/* Featured Article - Large Left */
.trending-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trending-card-large:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.trending-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #8B5CF6;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.trending-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.trending-read-time {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trending-read-time i {
    width: 14px;
    height: 14px;
}

.trending-content {
    padding: 32px;
}

.trending-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.3;
}

.trending-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.trending-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trending-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.trending-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Trending List - Right Column */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trending-card-small {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
}

.trending-card-small:hover {
    transform: translateX(4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.trending-category-small {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.trending-read-time-small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-left: 12px;
}

.trending-read-time-small i {
    width: 12px;
    height: 12px;
}

.trending-card-small h4 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 12px 0;
    line-height: 1.4;
}

.trending-card-small p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.trending-date-small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-header-trending h2 {
        font-size: 36px;
    }
    
    .trending-image {
        height: 300px;
    }
    
    .trending-content h3 {
        font-size: 24px;
    }
}

.trending-card-large a,
.trending-card-small a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.trending-card-large a:hover h3,
.trending-card-small a:hover h4 {
    color: #A78BFA;
}

.no-trending {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   LATEST CRYPTOCURRENCY NEWS
   ============================================ */

.latest-news-section {
    background: var(--color-midnight);
    padding: 80px 0 10px; 
}

.section-header-latest {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-latest h2 {
    font-family: var(--font-ridley);
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.section-header-latest p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.latest-news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.latest-news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.latest-news-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.latest-news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.latest-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-news-card:hover .latest-news-image img {
    transform: scale(1.05);
}

.latest-news-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.latest-news-content {
    padding: 24px;
}

.latest-news-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 54px;
}

.latest-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-news-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.latest-news-read-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.latest-news-author span {
    font-size: 14px;
    color: #8B5CF6;
    font-weight: 500;
}

.latest-news-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .latest-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-latest h2 {
        font-size: 32px;
    }
}

/* ============================================
   CATEGORY SHOWCASE SECTIONS
   ============================================ */

.category-showcase-header {
    text-align: left;
    margin-bottom: 60px;
    position: relative;
}

.category-showcase-header h2 {
    font-family: var(--font-ridley);
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.category-showcase-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 100%;  
    margin: 0 0 32px 0;  
    line-height: 1.6;
}

.category-showcase-badges {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.category-badge-count,
.category-badge-articles {
    background: rgba(139, 92, 246, 0.25);
    color: #A78BFA;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.category-showcase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.category-showcase-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-showcase-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.category-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-showcase-card:hover .category-showcase-image img {
    transform: scale(1.05);
}

.category-showcase-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.category-showcase-meta-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 12px;
}

.category-showcase-meta-overlay span {
    background: rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.category-showcase-content {
    padding: 24px;
}

.category-showcase-content h3 {
    font-family: var(--font-ridley);
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.4;
}

.category-showcase-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-showcase-link {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
}

.category-showcase-card:hover .category-showcase-link {
    color: #A78BFA;
}

.category-showcase-cta {
    text-align: center;
}

.btn-view-all-category {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-view-all-category:hover {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

.no-articles-category {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-showcase-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .category-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .category-showcase-header h2 {
        font-size: 28px;
    }
}

/* Crypto Ticker Styles */
.ticker-logo {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
}

.ticker-name {
    font-weight: 600;
    font-size: 14px;
}

.ticker-price {
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.price-up {
    color: #10B981 !important;
}

.price-down {
    color: #EF4444 !important;
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */

.archive-hero {
    background: linear-gradient(135deg, #1B0247 0%, #2D0863 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.archive-title {
    font-family: var(--font-ridley);
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.archive-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.archive-content {
    background: var(--color-midnight);
    padding: 80px 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
}

.pagination .page-numbers.current {
    background: #8B5CF6;
    border-color: #8B5CF6;
}

@media (max-width: 768px) {
    .archive-title {
        font-size: 32px;
    }
}

/* ============================================
   SINGLE ARTICLE PAGE
   ============================================ */

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    background: linear-gradient(135deg, #1B0247 0%, #2D0863 100%);
    padding: 20px 0 40px;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: rgba(139, 92, 246, 0.3);
    color: #A78BFA;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.article-title {
    font-family: var(--font-ridley);
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    width: 16px;
    height: 16px;
}

.article-featured-image {
    background: var(--color-midnight);
    padding: 60px 0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-content {
    background: var(--color-midnight);
    padding: 60px 0 80px;
    color: #FFFFFF;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px;
    color: #FFFFFF;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 20px;
    color: #FFFFFF;
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 32px;
}

.article-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.article-content a {
    color: #A78BFA;
    text-decoration: underline;
}

.article-content a:hover {
    color: #C4B5FD;
}

.article-footer {
    background: var(--color-midnight);
    padding: 60px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-share {
    text-align: center;
    margin-bottom: 60px;
}

.article-share h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
}

.share-btn i {
    width: 18px;
    height: 18px;
}

.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8B5CF6;
    transform: translateY(-4px);
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 14px;
    color: #8B5CF6;
    font-weight: 600;
}

.nav-title {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    
    .article-content p,
    .article-content li {
        font-size: 16px;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
}

.site-main {
    margin: 0 !important;
    padding: 0 !important;
}

.site-navigation ul li a {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.categories-section
.related-articles,
.category-showcase-section,
.news-section {
    background: var(--color-midnight) !important;
}

/* ============================================
   FONT UPDATES - ALL ELEMENTS
   ============================================ */

.site-navigation a,
.site-navigation ul li a {
    font-family: var(--font-satoshi) !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.ticker-name {
    font-family: var(--font-ridley) !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.ticker-price {
    font-family: var(--font-ridley) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
}

.hero-title {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
    font-size: 72px !important;
}

.feature-title {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
}

.section-header-trending h2 {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
    font-size: 72px !important;
}

.category-showcase-header h2 {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
    font-size: 48px !important;
}

.category-showcase-content h3 {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
    font-size: 24px !important;
}


.hero-title-trading {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
    font-size: 72px !important;
}

.feature-title-trading {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
}

.hero-subtitle {
    font-family: var(--font-ridley);
    font-weight: 600;
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.category-showcase-header {
    text-align: left !important;
}

.category-showcase-header h2 {
    text-align: left !important;
}

.category-showcase-header p {
    text-align: left !important;
    margin: 0 0 32px 0 !important;
    max-width: 100% !important;
}

.category-showcase-badges {
    justify-content: flex-start !important;
}

.category-badge-count,
.category-badge-articles {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    background: rgba(139, 92, 246, 0.25) !important;
}

.category-showcase-link {
    color: #FFFFFF !important;
    font-weight: 600 !important;
}

.category-showcase-card:hover .category-showcase-link {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}

.category-showcase-meta-overlay {
    position: static !important;
    display: flex !important;
    gap: 12px !important;
    margin-top: 12px !important;
    padding: 0 24px !important;
    background: none !important;
}

.category-showcase-meta-overlay span {
    background: rgba(139, 92, 246, 0.2) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
}

.category-showcase-label {
    bottom: 12px !important;
    left: 12px !important;
    font-size: 10px !important;
}

.section-header-trending {
    text-align: left !important;
}

.app-badges a[href*="play.google"],
.app-badges img[alt*="Google Play"],
.app-badges img[alt*="google"],
.app-badges a:nth-child(2) {
    display: none !important;
}

.footer-gas-tracker {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-gas-tracker h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}

.footer-gas-tracker p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
}

.footer-gas-tracker a {
    display: inline-block !important;
    margin-top: 6px !important;
    padding: 8px 16px !important;
    background: rgba(139, 92, 246, 0.2) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 6px !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    width: fit-content !important;
}

.footer-gas-tracker a:hover {
    background: rgba(139, 92, 246, 0.35) !important;
    opacity: 1 !important;
}

.category-showcase-cta {
    margin-bottom: 80px !important;
}

.archive .site-main .container {
    padding-top: 120px;
}

.archive .archive-header {
    margin-bottom: 48px;
}

.archive .archive-title {
    font-family: var(--font-ridley) !important;
    font-weight: 600 !important;
    font-size: 48px !important;
    color: #FFFFFF !important;
}

.hero-description,
.hero-subtitle {
    font-family: var(--font-ridley) !important;
}

/* ============================================
   ALIGNMENT FIXES - CATEGORY SECTIONS
   ============================================ */

.category-showcase-section .container,
.category-showcase-header,
.category-showcase-header h2,
.category-showcase-header p,
.category-showcase-badges,
.no-articles-category {
    text-align: left !important;
}

.category-showcase-badges {
    justify-content: flex-start !important;
}

.single .entry-title,
.single h1.entry-title,
.single .post-title {
    font-size: 36px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

/* ============================================
   MOBILE NAVBAR - HAMBURGER MENU
   ============================================ */

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }

    .site-navigation {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #1B0247 !important;
        padding: 20px !important;
        flex-direction: column !important;
        z-index: 9999 !important;
    }

    .site-navigation.mobile-open {
        display: flex !important;
    }

    .site-navigation ul {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .site-header {
        position: relative !important;
    }
}

.article-title {
    font-size: 36px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    max-width: 100% !important;
    width: 100% !important;
    font-family: var(--font-ridley) !important;
    text-transform: none !important;
}

.article-header {
    padding: 120px 0 40px !important;
    background: var(--color-midnight) !important;
}

.article-header .container {
    max-width: 800px !important;
    text-align: left !important;
}

@media (max-width: 768px) {
    .header-actions {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
        margin-left: auto !important;
    }

    .header-inner {
        position: relative !important;
    }
}

.article-content .wp-post-image,
.article-content > p:first-child img,
.article-content figure:first-child {
    display: none !important;
}

.archive-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.archive-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.articles-grid a {
    text-decoration: none !important;
}

.articles-grid .article-title,
.articles-grid h2,
.articles-grid h3 {
    text-decoration: none !important;
}

.article-featured-image {
    margin-bottom: 0 !important;
}

.article-content-wrapper {
    padding-top: 30px !important;
}

.article-card {
    border: 1px solid transparent !important;
    background: linear-gradient(145deg, rgba(30, 20, 60, 0.9), rgba(20, 10, 50, 0.95)) padding-box,
                linear-gradient(145deg, rgba(167, 139, 250, 0.3), rgba(109, 40, 217, 0.15)) border-box !important;
    border-radius: 12px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.article-card .article-image-link {
    display: block !important;
}

.article-card .article-image {
    width: 100% !important;
    display: block !important;
}

.article-card .article-content {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.article-card .article-date,
.article-card .article-read-time,
.article-card .separator {
    color: #ffffff !important;
}

.article-card .article-read-more {
    margin-top: auto !important;
    display: block !important;
    text-align: center !important;
    padding-top: 16px !important;
}

/* ===== ARCHIVE CARD OVERRIDES ===== */
.articles-grid .article-card {
    border: 1px solid transparent !important;
    background: 
        linear-gradient(145deg, rgba(30, 20, 60, 0.9), rgba(20, 10, 50, 0.95)) padding-box,
        linear-gradient(145deg, rgba(167, 139, 250, 0.4), rgba(109, 40, 217, 0.2)) border-box !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

.articles-grid .article-card .article-content {
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    gap: 8px !important;
}

.articles-grid .article-card .article-date,
.articles-grid .article-card .article-read-time,
.articles-grid .article-card .separator {
    color: #ffffff !important;
    opacity: 1 !important;
}

.articles-grid .article-card .article-read-more {
    margin-top: auto !important;
    display: block !important;
    text-align: center !important;
    padding-top: 20px !important;
    padding-bottom: 4px !important;
    color: #A78BFA !important;
    font-weight: 600 !important;
}

/* ===== SINGLE ARTICLE - gap fix ===== */
.article-featured-image {
    padding: 20px 0 0 !important;
    margin-bottom: 0 !important;
}

.article-content-wrapper {
    padding-top: 20px !important;
}