/* 
 * SHOTFX TRADING PLATFORM STYLES 
 * Main Green: #358028
 * Primary Button (Dark Red): #991b1b
 */

:root {
    /* Colors */
    --clr-bg-main: #0a0e17; /* Deep slate */
    --clr-bg-card: rgba(19, 27, 43, 0.6);
    --clr-text-main: #f8fafc;
    --clr-text-muted: #94a3b8;
    
    /* Brand Colors per requirements */
    --clr-brand-green: #358028; /* The requested main color */
    --clr-brand-green-hover: #419c31;
    --clr-brand-green-glow: rgba(53, 128, 40, 0.4);
    
    --clr-brand-red: #991b1b; /* Dark red for primary buttons and sell actions */
    --clr-brand-red-hover: #7f1d1d;
    --clr-brand-red-glow: rgba(153, 27, 27, 0.4);

    --clr-accent: #38bdf8; /* Secondary blue accent */
    
    /* Gradients */
    --grad-green: linear-gradient(135deg, #358028, #166534);
    --grad-red: linear-gradient(135deg, #b91c1c, #991b1b);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography Utils */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.highlight {
    color: transparent;
    background: var(--grad-green);
    -webkit-background-clip: text;
    background-clip: text;
}

.text-green { color: var(--clr-brand-green); }
.text-red { color: var(--clr-brand-red); }
.text-gold { color: #fbbf24; }
.text-center { text-align: center; }

.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.mb-50 { margin-bottom: 50px; }

/* Layout Utils */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 8px;
}

/* Dark Red Button as Primary CTA */
.btn-primary {
    background: var(--grad-red);
    color: white;
    box-shadow: 0 4px 14px var(--clr-brand-red-glow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #a51b1b, #7f1d1d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--clr-brand-red-glow);
}

/* Green Button for Secondary CTA or specific trends */
.btn-secondary {
    background: var(--grad-green);
    color: white;
    box-shadow: 0 4px 14px var(--clr-brand-green-glow);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #419c31, #14532d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--clr-brand-green-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-text-main);
}
.btn-outline:hover {
    border-color: var(--clr-brand-green);
    color: var(--clr-brand-green);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 24px 0;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--clr-brand-green);
}

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

.nav-links li a {
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
}

.nav-links li a:hover {
    color: var(--clr-text-main);
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-brand-green);
    transition: var(--transition);
}
.nav-links li a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Ticker Tape */
.ticker-wrap {
    width: 100%;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001; /* Above header if needed, but header is fixed. So, let's keep it mostly decorative */
}

/* Ticker goes to the very top */
body {
    padding-top: 40px; 
}
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
}
header {
    top: 40px;
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.ticker-item .pair { color: var(--clr-text-muted); }
.ticker-item .price { color: var(--clr-text-main); }
.ticker-item .change.up { color: var(--clr-brand-green); }
.ticker-item .change.down { color: var(--clr-brand-red); }

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

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
    mix-blend-mode: color-dodge;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: radial-gradient(circle at center, transparent 0%, var(--clr-bg-main) 80%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(53, 128, 40, 0.1);
    color: var(--clr-brand-green);
    border: 1px solid rgba(53, 128, 40, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-text-main);
}
.stat-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.dashboard-mockup {
    position: relative;
    border-radius: 16px;
    padding: 12px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.mockup-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(53, 128, 40, 0.2);
    color: var(--clr-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}
.badge-content .title {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}
.badge-content .value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-brand-green);
    font-size: 1.125rem;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--clr-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

/* Market Section */
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 6px;
    border-radius: 12px;
}

.btn-filter {
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}
.btn-filter.active, .btn-filter:hover {
    background: rgba(255,255,255,0.1);
    color: var(--clr-text-main);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.market-card {
    background: var(--clr-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.market-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pair-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pair-icons {
    display: flex;
    align-items: center;
    position: relative;
    width: 60px;
}
.pair-icons img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    object-fit: cover;
    border: 2px solid var(--clr-bg-card);
}
.pair-icons .overlap {
    position: absolute;
    left: 20px;
    z-index: 1;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.change {
    font-weight: 600;
    font-size: 0.875rem;
}
.change.up { color: var(--clr-brand-green); }
.change.down { color: var(--clr-brand-red); }

.price-display {
    font-family: var(--font-heading);
    margin-bottom: 16px;
}
.large-price {
    font-size: 2.5rem;
    font-weight: 700;
}
.price-decimal {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    vertical-align: super;
}

.spread-info {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.trade-actions {
    display: flex;
    gap: 12px;
}

.btn-trade {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 8px;
    line-height: 1.2;
}

/* Sell button utilizes the Dark Red */
.btn-trade.sell {
    background: rgba(153, 27, 27, 0.1);
    border: 1px solid rgba(153, 27, 27, 0.3);
    color: var(--clr-brand-red);
}
.btn-trade.sell:hover {
    background: var(--grad-red);
    color: white;
}
.btn-trade.sell:hover span {
    color: rgba(255,255,255,0.8);
}

/* Buy button utilizes the Main Green */
.btn-trade.buy {
    background: rgba(53, 128, 40, 0.1);
    border: 1px solid rgba(53, 128, 40, 0.3);
    color: var(--clr-brand-green);
}
.btn-trade.buy:hover {
    background: var(--grad-green);
    color: white;
}
.btn-trade.buy:hover span {
    color: rgba(255,255,255,0.8);
}

.btn-trade span {
    font-size: 1.125rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 4px;
    color: var(--clr-text-main);
    transition: var(--transition);
}

/* Features */
.subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.heading-accent {
    position: relative;
    display: inline-block;
}
.heading-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-green);
    border-radius: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(53, 128, 40, 0.3);
    box-shadow: 0 10px 40px rgba(53, 128, 40, 0.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(53, 128, 40, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px;
}

.feature-card p {
    color: var(--clr-text-muted);
}

/* CTA Box */
.cta-box {
    padding: 64px 32px;
    border: 1px solid rgba(53, 128, 40, 0.2);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.1) 0%, transparent 70%);
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -20%;
    width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(53, 128, 40, 0.15) 0%, transparent 70%);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-box p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: #06090e;
    padding-top: 80px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}
.border-bottom {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand p {
    color: var(--clr-text-muted);
    margin: 24px 0;
    max-width: 320px;
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-main);
}
.social-links a:hover {
    background: var(--grad-green);
    transform: translateY(-3px);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.link-group h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}
.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.link-group a {
    color: var(--clr-text-muted);
}
.link-group a:hover {
    color: var(--clr-brand-green);
    padding-left: 4px;
}
.footer-bottom {
    padding: 32px 0;
}
.risk-warning {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    text-align: justify;
}
.copyright {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-actions, .stats {
        justify-content: center;
    }
    .hero-content p {
        margin: 0 auto 40px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none; /* simple mobile menu toggle via JS in real app */
    }
    .menu-toggle {
        display: block;
    }
    .stats {
        flex-direction: column;
        gap: 24px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================= */
/* PHASE 2: NEW EXPANSIONS & AUTH PAGES                                      */
/* ========================================================================= */

/* Space Utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.btn-block { width: 100%; }

/* --- Auth Pages --- */
.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    mix-blend-mode: color-dodge;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
    z-index: 1;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    color: var(--clr-text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--clr-text-main);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--clr-text-muted);
}

.input-wrapper i.toggle-password {
    left: auto;
    right: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.input-wrapper i.toggle-password:hover {
    color: white;
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 16px 12px 48px;
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.input-wrapper.has-toggle input {
    padding-right: 48px;
}
.input-wrapper select {
    appearance: none;
}

.input-wrapper input:focus, .input-wrapper select:focus {
    outline: none;
    border-color: var(--clr-brand-green);
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 3px rgba(53, 128, 40, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
}
.checkbox-container input {
    accent-color: var(--clr-brand-green);
    width: 16px;
    height: 16px;
}

.forgot-link {
    color: var(--clr-brand-green);
    font-weight: 500;
}
.forgot-link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}
.auth-footer a {
    color: var(--clr-text-main);
    font-weight: 600;
}
.auth-footer a:hover {
    color: var(--clr-brand-green);
}

/* --- Block Sections for Homepage --- */
.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background: rgba(19, 27, 43, 0.3);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

/* Account Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card.glass-panel:hover {
    border-color: rgba(53, 128, 40, 0.3);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(53, 128, 40, 0.1) 0%, rgba(19, 27, 43, 0.6) 100%);
    border-color: var(--clr-brand-green);
    z-index: 10;
}
.pricing-card.popular::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.price-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-header h3 {
    font-size: 1.5rem;
    color: var(--clr-text-main);
}
.price-val {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    margin: 16px 0 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.price-currency { font-size: 1.5rem; margin-bottom: 6px; }
.price-desc { color: var(--clr-text-muted); font-size: 0.875rem; }

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--clr-text-muted);
}
.pricing-features li i {
    color: var(--clr-brand-green);
    font-size: 1.125rem;
}

/* Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-content h2 {
    margin-bottom: 24px;
}
.platform-content p {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.platform-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.brand-box:hover {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.1);
}
.brand-box i {
    font-size: 2rem;
    color: var(--clr-brand-green);
}
.brand-box span {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Economic Calendar Widget */
.calendar-widget {
    background: var(--clr-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 24px;
}
.cal-row {
    display: grid;
    grid-template-columns: 80px 60px 1fr auto auto;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}
.cal-row:last-child {
    border-bottom: none;
}
.cal-time { color: var(--clr-text-muted); font-size: 0.875rem; font-family: var(--font-heading); }
.cal-flag { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.cal-flag img { width: 24px; border-radius: 4px; }
.cal-event { font-weight: 500; }
.cal-impact .fa-star { color: rgba(255,255,255,0.1); }
.cal-impact[data-impact="high"] .fa-star { color: var(--clr-brand-red); }
.cal-impact[data-impact="medium"] .fa-star { color: #fbbf24; }
.cal-actual { font-family: var(--font-heading); font-weight: 600; }

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--clr-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.blog-img {
    height: 200px;
    background: #1e293b;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}
.blog-card:hover .blog-img img {
    opacity: 1;
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--grad-green);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}
.blog-date {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}
.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-title a:hover {
    color: var(--clr-brand-green);
}
.blog-excerpt {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    margin-bottom: 24px;
}
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text-main);
    font-weight: 600;
    font-size: 0.875rem;
}
.blog-readmore i {
    color: var(--clr-brand-green);
    transition: var(--transition);
}
.blog-readmore:hover i {
    transform: translateX(4px);
}

/* Auth Pages Responsive */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .cal-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .cal-event {
        grid-column: 1 / -1;
    }
}
