/* Trading Updates Page Styles */

#updates-page {
    background: #000;
}

#updates-page .updates-page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: url('../assets/images/hero/main-hero-background.png') center center / cover no-repeat;
    padding: 140px 0 80px;
    overflow: hidden;
}

#updates-page .updates-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

#updates-page .updates-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#updates-page .updates-hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

#updates-page .updates-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Features Section */
#updates-page .updates-features {
    background: #000;
    padding: 4rem 0 2rem;
}

#updates-page .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

#updates-page .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#updates-page .feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 204, 0.3);
    transform: translateY(-5px);
}

#updates-page .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF00CC, #3333ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.2rem;
}

#updates-page .feature-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

#updates-page .feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Widget Section */
#updates-page .tv-updates-section {
    background: #000;
    padding: 3rem 0 5rem;
}

#updates-page .tv-updates-shell {
    background: #09090B;
    border: 1px solid #1F1F23;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 0, 204, 0.08), 0 8px 40px rgba(0, 0, 0, 0.4);
    max-width: 1060px;
    margin: 0 auto;
}

#updates-page .tv-updates-shell .tradingview-widget-copyright .blue-text {
    color: #FF00CC;
}

/* Responsive Styles */
@media (max-width: 991px) {
    #updates-page .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    #updates-page .features-grid {
        grid-template-columns: 1fr;
    }
}
