.hero-section {
    background: linear-gradient(135deg, #D32F2F 0%, #FF5252 50%, #FF8A80 100%);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.hero-desc {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-search input {
    background: transparent;
    color: #fff;
    border: none;
}

.hero-search input::placeholder {
    color: rgba(255,255,255,0.7);
}

.hero-search button {
    background: #fff;
    color: var(--primary);
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.games-grid .game-entry {
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid var(--border);
    background: var(--bg-card);
}

.games-grid .game-entry:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.game-entry .game-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.game-entry .game-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.game-entry .game-posts-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 32px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
}