/* ============================================
   TEMATIK DETAY SAYFALARI - ULTRA MODERN CSS
   ============================================ */

:root {
    --theme-primary: #8b5cf6;
    --theme-secondary: #6366f1;
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(139, 92, 246, 0.2);
    --glow-color: rgba(139, 92, 246, 0.4);
}

/* Theme Color Dynamic Variables */
[data-theme-color="#8b5cf6"] {
    --theme-primary: #8b5cf6;
    --theme-secondary: #6366f1;
}

[data-theme-color="#10b981"] {
    --theme-primary: #10b981;
    --theme-secondary: #059669;
}

[data-theme-color="#ef4444"] {
    --theme-primary: #ef4444;
    --theme-secondary: #dc2626;
}

[data-theme-color="#3b82f6"] {
    --theme-primary: #3b82f6;
    --theme-secondary: #2563eb;
}

[data-theme-color="#ec4899"] {
    --theme-primary: #ec4899;
    --theme-secondary: #a855f7;
}

[data-theme-color="#f59e0b"] {
    --theme-primary: #f59e0b;
    --theme-secondary: #d97706;
}

[data-theme-color="#14b8a6"] {
    --theme-primary: #14b8a6;
    --theme-secondary: #0d9488;
}

[data-theme-color="#f43f5e"] {
    --theme-primary: #f43f5e;
    --theme-secondary: #e11d48;
}

/* New Theme Colors */
[data-theme-color="#f97316"] {
    --theme-primary: #f97316;
    --theme-secondary: #ea580c;
}

[data-theme-color="#0ea5e9"] {
    --theme-primary: #0ea5e9;
    --theme-secondary: #0284c7;
}

[data-theme-color="#a855f7"] {
    --theme-primary: #a855f7;
    --theme-secondary: #7c3aed;
}

[data-theme-color="#eab308"] {
    --theme-primary: #eab308;
    --theme-secondary: #ca8a04;
}

[data-theme-color="#06b6d4"] {
    --theme-primary: #06b6d4;
    --theme-secondary: #0891b2;
}

/* Hero Background Image Support */
.theme-hero[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
}

.theme-hero .hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.theme-hero .hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

/* Page Container */
.theme-detail-page {
    min-height: 100vh;
    background: var(--bg-dark);
    padding-top: var(--header-height, 70px);
}

/* ============================================
   MEGA HERO SECTION
   ============================================ */
.theme-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 80% at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #000 0%, #050505 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--theme-primary);
    opacity: 0.15;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--theme-secondary);
    opacity: 0.1;
    bottom: -50px;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--theme-primary);
    opacity: 0.08;
    top: 50%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatOrb {

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

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
    border: 1px solid var(--theme-primary);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    }
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--theme-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-live {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1.1;
}

.title-gradient {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -3px;
    line-height: 1;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--theme-primary);
    transform: translateY(-4px);
}

.hero-stat .stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-stat .stat-value.positive {
    color: #10b981;
}

.hero-stat .stat-value.negative {
    color: #ef4444;
}

.hero-stat .stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

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

.theme-icon-large {
    font-size: 200px;
    filter: drop-shadow(0 0 60px var(--glow-color));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

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

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

.icon-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--theme-primary) 0%, transparent 70%);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ============================================
   FILTERS SECTION
   ============================================ */
.filters-section {
    padding: 30px 60px;
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: var(--header-height, 70px);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--theme-primary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px var(--glow-color);
}

/* ============================================
   STOCKS SECTION
   ============================================ */
.stocks-section {
    padding: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.stocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 28px;
}

/* ============================================
   STOCK CARD - ULTRA PREMIUM DESIGN
   ============================================ */
.stock-card {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.98), rgba(8, 8, 12, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stock-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stock-card:hover {
    transform: translateY(-8px);
    border-color: var(--theme-primary);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px var(--glow-color);
}

.stock-card:hover::before {
    opacity: 1;
}

.stock-card.featured {
    grid-column: span 1;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(8, 8, 12, 0.99));
    border-color: rgba(139, 92, 246, 0.3);
}

.stock-card.featured::before {
    opacity: 0.5;
}

.card-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    animation: ribbonGlow 2s ease-in-out infinite;
}

.card-ribbon.secondary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

@keyframes ribbonGlow {

    0%,
    100% {
        box-shadow: 0 0 15px var(--glow-color);
    }

    50% {
        box-shadow: 0 0 25px var(--glow-color);
    }
}

.card-header {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 16px;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stock-card:hover .company-logo {
    border-color: var(--theme-primary);
    box-shadow: 0 0 20px var(--glow-color);
}

.company-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.company-info {
    flex: 1;
}

.company-symbol {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
}

.company-name {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 2px 0;
}

.company-sector {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-change {
    text-align: right;
}

.company-change .change-value {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.company-change.positive .change-value {
    color: #10b981;
}

.company-change.negative .change-value {
    color: #ef4444;
}

.company-change .change-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.card-body {
    padding: 0 24px 24px;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.price-change {
    font-size: 14px;
    font-weight: 700;
}

.price-change.positive {
    color: #10b981;
}

.price-change.negative {
    color: #ef4444;
}

.mini-chart {
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 8px;
}

/* Animated chart bars */
.mini-chart::before {
    content: '';
    position: absolute;
    inset: 8px;
    background:
        linear-gradient(90deg,
            transparent 0%, transparent 4%,
            rgba(16, 185, 129, 0.3) 5%, rgba(16, 185, 129, 0.3) 7%,
            transparent 8%, transparent 11%,
            rgba(16, 185, 129, 0.5) 12%, rgba(16, 185, 129, 0.5) 14%,
            transparent 15%, transparent 18%,
            rgba(16, 185, 129, 0.4) 19%, rgba(16, 185, 129, 0.4) 21%,
            transparent 22%, transparent 25%,
            rgba(16, 185, 129, 0.6) 26%, rgba(16, 185, 129, 0.6) 28%,
            transparent 29%, transparent 32%,
            rgba(16, 185, 129, 0.35) 33%, rgba(16, 185, 129, 0.35) 35%,
            transparent 36%, transparent 39%,
            rgba(16, 185, 129, 0.55) 40%, rgba(16, 185, 129, 0.55) 42%,
            transparent 43%, transparent 46%,
            rgba(16, 185, 129, 0.45) 47%, rgba(16, 185, 129, 0.45) 49%,
            transparent 50%, transparent 53%,
            rgba(16, 185, 129, 0.7) 54%, rgba(16, 185, 129, 0.7) 56%,
            transparent 57%, transparent 60%,
            rgba(16, 185, 129, 0.5) 61%, rgba(16, 185, 129, 0.5) 63%,
            transparent 64%, transparent 67%,
            rgba(16, 185, 129, 0.6) 68%, rgba(16, 185, 129, 0.6) 70%,
            transparent 71%, transparent 74%,
            rgba(16, 185, 129, 0.8) 75%, rgba(16, 185, 129, 0.8) 77%,
            transparent 78%, transparent 81%,
            rgba(16, 185, 129, 0.65) 82%, rgba(16, 185, 129, 0.65) 84%,
            transparent 85%, transparent 88%,
            rgba(16, 185, 129, 0.9) 89%, rgba(16, 185, 129, 0.9) 91%,
            transparent 92%, transparent 100%);
    mask-image: linear-gradient(to top, white 0%, white 25%, white 35%, transparent 38%,
            white 40%, white 50%, transparent 53%,
            white 55%, white 65%, transparent 68%,
            white 70%, white 80%, transparent 85%,
            white 87%, white 100%);
    -webkit-mask-image: linear-gradient(to top, white 0%, white 25%, white 35%, transparent 38%,
            white 40%, white 50%, transparent 53%,
            white 55%, white 65%, transparent 68%,
            white 70%, white 80%, transparent 85%,
            white 87%, white 100%);
    border-radius: 4px;
}

.mini-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.metric-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.analyst-rating {
    flex: 1;
    max-width: 200px;
}

.rating-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.rating-text {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.detail-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-color);
}

.detail-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.detail-btn:hover svg {
    transform: translateX(4px);
}

.card-description {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 0;
}

.card-description p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 16px 0 0;
}

/* ============================================
   INSIGHTS SECTION
   ============================================ */
.insights-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, transparent 100%);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--theme-primary);
    transform: translateY(-6px);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.insight-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PARTNER CTA SECTION
   ============================================ */
.partner-cta-section {
    padding: 80px 60px;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #000 0%, #050505 100%);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn img {
    height: 24px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.cta-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.theme-footer {
    padding: 40px 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--theme-primary);
}

.theme-footer p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.stock-card {
    animation: fadeIn 0.5s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .theme-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        margin-top: 40px;
    }

    .theme-icon-large {
        font-size: 120px;
    }
}

@media (max-width: 900px) {
    .stocks-grid {
        grid-template-columns: 1fr;
    }

    .filters-section {
        padding: 20px 24px;
    }

    .filters-container {
        flex-direction: column;
        gap: 16px;
    }

    .filter-group {
        flex-wrap: wrap;
    }

    .stocks-section,
    .insights-section,
    .partner-cta-section {
        padding: 40px 24px;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .key-metrics {
        grid-template-columns: 1fr;
    }

    .card-footer {
        flex-direction: column;
        gap: 16px;
    }

    .analyst-rating {
        max-width: 100%;
        width: 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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