/* ===== HERO STYLES COMMUNS ===== */

/* Hero Section Accueil */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--color-primary)10, 
        var(--color-secondary)20, 
        var(--color-bg) 70%
    );
    opacity: 0.8;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100rem;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease-out 0.5s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.hero-badge-icon {
    font-size: 1.2rem;
}

.hero-title-container {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--color-text);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 1s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 1.4s;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease-out 1.2s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 1.6s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 1.8s forwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 2s forwards;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== HERO STREAMER ===== */

.streamer-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}

.streamer-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.streamer-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

.streamer-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.streamer-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    padding: 2rem;
}

.streamer-hero-nav {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out 0.2s forwards;
}

.streamer-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.streamer-back-btn:hover {
    color: var(--color-primary);
    transform: translateX(-5px);
}

.streamer-hero-main {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.streamer-hero-avatar {
    position: relative;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease-out 0.4s forwards;
}

.streamer-hero-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
}

.streamer-hero-avatar-text {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    background: var(--color-secondary);
    color: var(--color-text);
}

.streamer-hero-avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.streamer-hero-info {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.6s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.streamer-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--color-text);
}

.streamer-hero-title {
    margin-bottom: 1rem;
}

.streamer-hero-name {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.streamer-hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--color-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}

.streamer-hero-description {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.streamer-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.streamer-hero-stat {
    text-align: center;
}

.streamer-hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.streamer-hero-stat-label {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.3rem;
}

.streamer-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.streamer-hero-btn-primary,
.streamer-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.streamer-hero-btn-primary {
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.streamer-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.streamer-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.streamer-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Live Status Hero */
.streamer-hero-live {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideUp 0.8s ease-out 1s forwards;
}

.live-indicator-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.live-dot-hero {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-text-hero {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff4444;
}

.live-viewers-hero {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.live-game-hero {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.live-watch-btn {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.live-watch-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .streamer-hero-main {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .streamer-hero-stats {
        justify-content: center;
    }
    
    .streamer-hero-live {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 2rem;
    }
    
    /* Layout responsive pour la page streamer */
    .d-flex.items-start.gap-40 {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .clips-compact-slider {
        max-width: 100% !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .streamer-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== ANIMATIONS GSAP READY ===== */

.gsap-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-slide-left {
    opacity: 0;
    transform: translateX(-30px);
}

.gsap-slide-right {
    opacity: 0;
    transform: translateX(30px);
}

.gsap-scale-in {
    opacity: 0;
    transform: scale(0.8);
}

.gsap-slide-up {
    opacity: 0;
    transform: translateY(20px);
}

/* ===== NOUVELLE SECTION HERO STREAMER ===== */

.streamer-hero-section {
    padding: 4rem 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.streamer-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: var(--color-primary);
    z-index: 2;
}

.streamer-hero-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.streamer-info-block {
    flex: 1;
}

.clips-block {
    max-width: 40rem;
    width: 100%;
}

/* ===== AVATAR AVEC BORDURE SIMPLE ===== */

.streamer-avatar-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.streamer-avatar-img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.2rem solid transparent;
    transition: border-color 0.3s ease;
}

.streamer-avatar-fallback {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text);
    border: 0.2rem solid transparent;
    transition: border-color 0.3s ease;
}

.avatar-glow-effect {
    position: absolute;
    top: -0.1rem;
    left: -0.1rem;
    right: -0.1rem;
    bottom: -0.1rem;
    border-radius: 50%;
    border: 0.1rem solid;
    opacity: 0.8;
    z-index: 1;
}

.live-badge {
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 3;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== INFOS STREAMER ===== */

.streamer-details {
    flex: 1;
    min-width: 0;
}

.streamer-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.streamer-subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 0.4rem;
}

.streamer-description {
    font-size: 1.6rem;
    color: var(--color-muted);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

/* ===== STATS ===== */

.streamer-stats {
    display: flex;
    gap: 2.4rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-top: 0.4rem;
}

/* ===== ACTIONS ===== */

.streamer-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.streamer-actions .btn-primary {
    padding: 1.4rem 2.4rem;
    border-radius: 1.2rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.streamer-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.streamer-actions .btn-primary:hover::before {
    left: 100%;
}

.streamer-actions .btn-primary:hover {
    transform: translateY(-0.4rem) scale(1.02);
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.25);
}

.streamer-actions .btn-secondary {
    background: var(--color-bg);
    border: 0.2rem solid var(--color-primary);
    color: var(--color-primary);
    padding: 1.2rem 2.2rem;
    border-radius: 1.2rem;
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.streamer-actions .btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.streamer-actions .btn-secondary:hover::after {
    transform: scaleX(1);
}

.streamer-actions .btn-secondary:hover {
    color: var(--color-bg);
    border-color: var(--color-primary);
    transform: translateY(-0.4rem) scale(1.02);
    box-shadow: 0 1.2rem 2.4rem rgba(42, 111, 189, 0.2);
}

/* ===== CLIPS BLOCK ===== */

.clips-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1.6rem 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .streamer-hero-section {
        padding: 2rem 0;
    }
    
    .streamer-hero-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0;
    }
    .streamer-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .streamer-actions {
        justify-content: center;
    }
    
    .streamer-actions .btn-primary,
    .streamer-actions .btn-secondary {
        flex: 1;
        justify-content: center;
        min-width: 14rem;
    }
}

@media (max-width: 480px) {
    .streamer-name {
        font-size: 2.4rem;
    }
    
    .streamer-stats {
        gap: 1.5rem;
    }
    
    .streamer-actions {
        flex-direction: column;
    }
}

/* ===== CLIPS SLIDER ===== */

.clips-compact-slider {
    max-width: 40rem;
}

/* ===== CLIPS SIDEBAR ===== */

.clip-sidebar-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.clip-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.clip-sidebar-thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.clip-sidebar-info {
    flex: 1;
    min-width: 0;
}

.clip-sidebar-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clip-sidebar-stats {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.clip-sidebar-stats span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

/* ===== HERO LAYOUT AVEC ACTUALITÉS ===== */

.hero-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 2rem;
}

.hero-main-action {
    display: flex;
    justify-content: center;
}

.hero-news-section {
    max-width: 35rem;
    width: 100%;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.news-feed {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
    max-height: 40rem;
    overflow-y: auto;
}

.news-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--color-muted);
    font-size: 1.4rem;
}

.loading-spinner-small {
    width: 2rem;
    height: 2rem;
    border: 0.2rem solid var(--color-border);
    border-top: 0.2rem solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.news-item {
    padding: 1.2rem;
    border-radius: 0.8rem;
    margin-bottom: 1rem;
    background: var(--color-secondary-light);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.news-item:hover {
    background: var(--color-secondary);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.1);
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.news-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.news-meta {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.2rem 0;
    line-height: 1.3;
}

.news-time {
    font-size: 1.1rem;
    color: var(--color-muted);
    font-weight: 500;
}

.news-avatar {
    flex-shrink: 0;
}

.news-avatar-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.news-content {
    font-size: 1.3rem;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.news-extra {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--color-muted);
}

.news-viewers {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.news-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--color-muted);
    font-size: 1.4rem;
    font-style: italic;
}

.news-error {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--color-accent);
    font-size: 1.4rem;
}

/* ===== RESPONSIVE HERO LAYOUT ===== */

@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-news-section {
        max-width: 100%;
        order: 2;
    }
    
    .hero-main-action {
        order: 1;
    }
    
    .news-feed {
        max-height: 30rem;
    }
}

@media (max-width: 480px) {
    .hero-layout {
        gap: 1.5rem;
    }
    
    .news-item {
        padding: 1rem;
    }
    
    .news-header {
        gap: 0.8rem;
    }
    
    .news-avatar-img {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .news-feed {
        padding: 1.2rem;
    }
}
