/* Enhanced Dynamic Hero Section Styles - Add this to website styles or create hero.css */

/* ===== DYNAMIC HERO SECTION ===== */
.dynamic-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: -110px;
    padding-top: 72px;
}

/* Background Container */
.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-background-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    transition: transform 20s ease-in-out;
    animation: heroBackgroundMove 30s ease-in-out infinite;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgb(26 31 46 / 60%) 30%, rgb(37 42 58 / 78%) 70%, rgb(13 17 23 / 55%) 100%);
    z-index: 2;
}

/* Animated Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat var(--duration, 10s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
}

.particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, transparent 70%);
}

/* Floating Runes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-rune {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatRune 15s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.rune-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.rune-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.rune-3 {
    top: 30%;
    right: 25%;
    animation-delay: -10s;
}

.rune-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: -7.5s;
}

/* Main Content */
.hero-main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--spacing-4xl) 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-4xl);
    align-items: start;
}

/* Primary Panel */
.hero-primary-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

.hero-content-slide {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Eyebrow */
.hero-eyebrow {
    position: relative;
    margin-bottom: var(--spacing-xl);
    display: inline-block;
}

.eyebrow-text {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 115, 51, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    animation: eyebrowPulse 3s ease-in-out infinite;
}

.eyebrow-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    filter: blur(8px);
    animation: eyebrowGlow 4s ease-in-out infinite;
}

/* Main Title */
.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.title-underline {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin-top: var(--spacing-md);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineExpand 1.5s ease-out 0.5s forwards;
}

/* Description */
.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Main Actions */
.hero-main-actions {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
    flex-wrap: wrap;
}

.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-3xl);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4e794 50%, var(--accent-copper) 100%);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    animation: ctaPulse 0.8s ease-out 1.2s both;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.hero-cta-primary:hover .btn-glow {
    opacity: 0.5;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: ctaSecondary 0.8s ease-out 1.4s both;
}

.hero-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover .btn-icon,
.hero-cta-secondary:hover .btn-icon {
    transform: translateX(4px);
}

/* Stats Ticker */
.hero-stats-ticker {
    display: flex;
    gap: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 1.6s both;
}

.stat-ticker-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    animation: counterUp 2s ease-out 2s both;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-trend {
    font-size: 0.7rem;
    color: var(--status-success);
    margin-top: var(--spacing-xs);
    font-weight: 600;
}

/* Secondary Panel */
.hero-secondary-panel {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    height: fit-content;
    sticky: true;
    top: var(--spacing-3xl);
}

.feature-highlights,
.news-highlights {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    backdrop-filter: blur(20px);
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.news-highlights {
    animation-delay: 0.8s;
}

.panel-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: featureSlideIn 0.6s ease-out calc(0.8s + var(--delay)) both;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-color, var(--accent-gold));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color, var(--accent-gold));
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color, var(--accent-gold));
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.feature-pulse {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 8px;
    height: 8px;
    background: var(--accent-color, var(--accent-gold));
    border-radius: 50%;
    animation: featurePulse 2s ease-in-out infinite;
}

/* News Cards */
.news-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.news-card {
    position: relative;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    animation: newsSlideIn 0.6s ease-out calc(var(--delay)) both;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.news-category {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
}

.news-title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--accent-gold);
}

.news-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.news-card:hover .news-glow {
    opacity: 1;
    transform: translateX(100%);
}

.view-all-news {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-news:hover {
    gap: var(--spacing-md);
    transform: translateX(4px);
}

/* Navigation */
.hero-navigation {
    position: absolute;
    bottom: var(--spacing-3xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-dots {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.dot-inner {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dot.active .dot-inner {
    background: var(--accent-gold);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.dot-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.nav-dot:hover .dot-label,
.nav-dot.active .dot-label {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent-gold);
}

.nav-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-copper));
    width: 0;
    transition: width 8s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 15;
    animation: scrollIndicatorBounce 2s ease-in-out 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.scroll-arrow {
    color: var(--accent-gold);
    font-size: 1.2rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes heroBackgroundMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(0.5deg); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

@keyframes floatRune {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes eyebrowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

@keyframes eyebrowGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

@keyframes titleShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes underlineExpand {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaPulse {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaSecondary {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes counterUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes newsSlideIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes featurePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes scrollIndicatorBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr 320px;
        gap: var(--spacing-3xl);
    }
    
    .hero-stats-ticker {
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
    }
    
    .hero-secondary-panel {
        position: sticky;
        top: var(--spacing-xl);
        max-height: 80vh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-gold) transparent;
    }
    
    .hero-secondary-panel::-webkit-scrollbar {
        width: 4px;
    }
    
    .hero-secondary-panel::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 2px;
    }
    
    .scroll-indicator {
        right: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .dynamic-hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-main-content {
        padding: var(--spacing-3xl) 0;
    }
    
    .hero-primary-panel {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    .hero-main-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats-ticker {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .feature-highlights,
    .news-highlights {
        padding: var(--spacing-lg);
    }
    
    .hero-navigation {
        bottom: var(--spacing-xl);
    }
    
    .nav-dots {
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .dot-label {
        display: none;
    }
    
    .scroll-indicator {
        position: static;
        margin-top: var(--spacing-xl);
        flex-direction: row;
    }
    
    .scroll-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        top: -5%;
        left: -5%;
        width: 110%;
        height: 110%;
    }
    
    .hero-stats-ticker {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-ticker-item {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-ticker-item:last-child {
        border-bottom: none;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .news-card {
        padding: var(--spacing-md);
    }
    
    .hero-secondary-panel {
        gap: var(--spacing-xl);
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-image,
    .particle,
    .floating-rune,
    .eyebrow-text,
    .title-line,
    .hero-cta-primary,
    .feature-pulse,
    .scroll-arrow {
        animation: none;
    }
    
    .hero-background-slide,
    .hero-content-slide,
    .feature-card,
    .news-card {
        transition-duration: 0.1s;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-bg-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .feature-highlights,
    .news-highlights {
        border-width: 2px;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        border-width: 3px;
    }
}



/* Additional CSS for Game Icons Hero Section - Add to existing styles */

/* ===== FLOATING GAME ICONS ===== */
.floating-game-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    animation: floatGameIcon 12s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
    z-index: 4;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.floating-game-icon:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.8));
}

.floating-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-copper), var(--accent-gold));
    border-radius: var(--radius-md);
    opacity: 0;
    filter: blur(8px);
    animation: iconGlowPulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Positioning for each floating icon */
.icon-1 {
    top: 15%;
    left: 8%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 12%;
    animation-duration: 18s;
    animation-delay: -3s;
}

.icon-3 {
    top: 45%;
    left: 5%;
    animation-duration: 14s;
    animation-delay: -6s;
}

.icon-4 {
    top: 65%;
    right: 8%;
    animation-duration: 16s;
    animation-delay: -9s;
}

.icon-5 {
    bottom: 20%;
    left: 15%;
    animation-duration: 17s;
    animation-delay: -12s;
}

.icon-6 {
    bottom: 35%;
    right: 20%;
    animation-duration: 13s;
    animation-delay: -15s;
}

/* Enhanced Stats Ticker with Game Theming */
.hero-stats-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(13, 17, 23, 0.6));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px);
    animation: fadeInUp 0.8s ease-out 1.6s both;
    position: relative;
    overflow: hidden;
}

.hero-stats-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: statsGlow 3s ease-in-out infinite;
}

.stat-ticker-item {
    text-align: center;
    padding: var(--spacing-md);
    position: relative;
    transition: transform 0.3s ease;
}

.stat-ticker-item:hover {
    transform: translateY(-4px);
}

.stat-ticker-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    animation: counterUp 2s ease-out 2s both;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.stat-trend {
    font-size: 0.75rem;
    color: var(--status-success);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-trend::before {
    content: '↗';
    font-size: 0.8em;
    animation: trendBounce 2s ease-in-out infinite;
}

/* Enhanced Feature Cards with Game Theming */
.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: featureSlideIn 0.6s ease-out calc(0.8s + var(--delay)) both;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-color, var(--accent-gold));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.feature-card:hover {
    transform: translateX(8px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: var(--accent-color, var(--accent-gold));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color, var(--accent-gold)), rgba(184, 115, 51, 0.8));
    color: var(--bg-primary);
    border-radius: var(--radius-lg);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    filter: blur(8px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-pulse {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 8px;
    height: 8px;
    background: var(--accent-color, var(--accent-gold));
    border-radius: 50%;
    animation: featurePulse 2s ease-in-out infinite;
}

/* Enhanced News Cards */
.news-card {
    position: relative;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: newsSlideIn 0.6s ease-out calc(var(--delay)) both;
}

.news-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.news-category {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 2px 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: fit-content;
}

/* Enhanced CTA Buttons */
.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl) var(--spacing-3xl);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4e794 50%, var(--accent-copper) 100%);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: ctaPulse 0.8s ease-out 1.2s both;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: ctaSecondary 0.8s ease-out 1.4s both;
}

.hero-cta-secondary:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.1));
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Enhanced Animations */
@keyframes floatGameIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(0.95);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) rotate(8deg) scale(1.05);
        opacity: 1;
    }
}

@keyframes iconGlowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes statsGlow {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

@keyframes trendBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes featurePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--accent-color, var(--accent-gold));
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.3);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .floating-game-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-stats-ticker {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }
    
    .stat-ticker-item:nth-child(odd)::after {
        display: none;
    }
    
    .stat-ticker-item:nth-child(-n+2)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20%;
        right: 20%;
        height: 1px;
        width: 60%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: var(--spacing-md);
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .hero-cta-primary {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-ticker {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .stat-ticker-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: var(--spacing-md) var(--spacing-lg);
        background: rgba(255, 255, 255, 0.02);
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .stat-ticker-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-info {
        display: flex;
        flex-direction: column;
    }
    
    .stat-meta {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .floating-game-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Reduce number of floating icons on small screens */
    .icon-5,
    .icon-6 {
        display: none;
    }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .floating-game-icon,
    .icon-glow,
    .feature-pulse {
        animation: none;
    }
    
    .hero-stats-ticker::before {
        animation: none;
    }
    
    .stat-trend::before {
        animation: none;
    }
    
    .floating-game-icon {
        opacity: 0.6;
    }
}

/* Enhanced Latest Updates Panel Styles */

/* Panel Container */
.news-highlights {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    backdrop-filter: blur(20px);
    animation: slideInRight 0.8s ease-out 0.8s both;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.news-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 20%, 
        var(--accent-copper) 80%, 
        transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Panel Title */
.news-highlights .panel-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.news-highlights .panel-title i {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.news-highlights .panel-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-copper));
    border-radius: 1px;
}

/* News Cards Container */
.news-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Individual News Cards */
.news-card {
    position: relative;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%, 
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: newsSlideIn 0.6s ease-out calc(var(--delay)) both;
    backdrop-filter: blur(10px);
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-copper));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.news-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-4px) translateX(4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.15);
}

.news-card:hover::before {
    transform: scaleY(1);
}

/* News Meta Information */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-md);
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px 10px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15), 
        rgba(184, 115, 51, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.news-category i {
    font-size: 0.8rem;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
}

.news-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* News Title */
.news-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.news-title a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* News Glow Effect */
.news-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.08) 50%, 
        transparent 100%);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease;
    pointer-events: none;
    border-radius: inherit;
}

.news-card:hover .news-glow {
    opacity: 1;
    transform: translateX(100%);
}

/* View All Link */
.view-all-news {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05), 
        rgba(184, 115, 51, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(8px);
}

.view-all-news:hover {
    gap: var(--spacing-md);
    transform: translateX(4px);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1), 
        rgba(184, 115, 51, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.view-all-news i {
    transition: transform 0.3s ease;
}

.view-all-news:hover i {
    transform: translateX(2px);
}

/* Category-specific styling */
.news-category.dev-log {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15), 
        rgba(5, 150, 105, 0.1));
    border-color: rgba(16, 185, 129, 0.25);
    color: var(--status-success);
}

.news-category.news {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15), 
        rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--status-info);
}

.news-category.community {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15), 
        rgba(124, 58, 237, 0.1));
    border-color: rgba(139, 92, 246, 0.25);
    color: #8b5cf6;
}

.news-category.development {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.15), 
        rgba(217, 119, 6, 0.1));
    border-color: rgba(245, 158, 11, 0.25);
    color: #f59e0b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-highlights {
        padding: var(--spacing-lg);
    }
    
    .news-highlights .panel-title {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .news-cards {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .news-card {
        padding: var(--spacing-md);
    }
    
    .news-card:hover {
        transform: translateY(-2px);
    }
    
    .news-meta {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }
    
    .news-category {
        order: 1;
        max-width: calc(100% - 70px);
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .news-date {
        order: 2;
        font-size: 0.7rem;
        min-width: 55px;
        margin-left: auto;
    }
    
    .news-title {
        font-size: 0.95rem;
        margin-top: var(--spacing-xs);
    }
    
    .view-all-news {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .news-highlights .panel-title {
        font-size: 1.1rem;
        gap: var(--spacing-sm);
    }
    
    .news-card {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }
    
    .news-category {
        max-width: 100%;
        order: 1;
    }
    
    .news-date {
        order: 2;
        margin-left: 0;
        align-self: flex-end;
        margin-top: -4px;
    }
    
    .news-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-top: var(--spacing-sm);
    }
    
    .news-category {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .news-date {
        font-size: 0.7rem;
    }
}

/* Dark mode enhancement */
@media (prefers-color-scheme: dark) {
    .news-highlights {
        background: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.04) 0%, 
            rgba(255, 255, 255, 0.01) 50%,
            rgba(255, 255, 255, 0.03) 100%);
        border-color: rgba(212, 175, 55, 0.1);
    }
    
    .news-card {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.03) 0%, 
            rgba(255, 255, 255, 0.01) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .news-highlights {
        border-width: 2px;
        border-color: var(--accent-gold);
    }
    
    .news-card {
        border-width: 2px;
    }
    
    .news-category {
        border-width: 2px;
        font-weight: 800;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .news-card,
    .view-all-news,
    .news-glow {
        transition-duration: 0.1s;
    }
    
    .news-card:hover {
        transform: none;
    }
    
    .news-glow {
        display: none;
    }
}