/* ========================================
   MMOFinds.de - DESIGN UPGRADE V4
   June 2026 — Enhanced Hero, Glass Cards, Gradient Accents
   ======================================== */

/* === HERO SECTION UPGRADE === */
.hero-section {
    position: relative;
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(74,158,255,0.08) 0%, 
        rgba(139,92,246,0.06) 50%, 
        rgba(236,72,153,0.04) 100%);
    border-radius: 0 0 32px 32px;
    margin-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, 
        rgba(74,158,255,0.1) 0%, 
        transparent 40%),
        radial-gradient(circle at 70% 60%, 
        rgba(139,92,246,0.08) 0%, 
        transparent 40%);
    animation: hero-bg-rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes hero-bg-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    position: relative;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    position: relative;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* === STATS ROW UPGRADE === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0 48px;
    padding: 24px;
    background: rgba(26,26,26,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(74,158,255,0.1);
    border-radius: var(--radius-xl);
}

.stat-card {
    text-align: center;
    padding: 16px 8px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, 
        rgba(74,158,255,0.05) 0%, 
        rgba(139,92,246,0.03) 100%);
    border: 1px solid rgba(74,158,255,0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74,158,255,0.2);
    box-shadow: 0 8px 32px rgba(74,158,255,0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* === SECTION HEADER UPGRADE === */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(74,158,255,0.1);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.section-header a {
    font-size: 0.9rem;
    color: var(--color-primary);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.section-header a:hover {
    opacity: 1;
}

/* === CARD UPGRADE === */
.card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a9eff, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(74,158,255,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(74,158,255,0.08);
}

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

.card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(26,26,26,0.8));
    pointer-events: none;
}

.card-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    margin-bottom: 8px;
}

.card-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--color-primary);
}

.card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    flex: 1;
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
    margin: 48px 0 32px;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(74,158,255,0.08) 0%, 
        rgba(139,92,246,0.06) 100%);
    border: 1px solid rgba(74,158,255,0.15);
    border-radius: var(--radius-xl);
    text-align: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-desc {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    color: var(--color-text);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
}

.newsletter-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #4a9eff, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74,158,255,0.3);
}

/* === FOOTER UPGRADE === */
.site-footer {
    margin-top: 48px;
    padding: 48px 20px 24px;
    background: rgba(17,17,17,0.8);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4a9eff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-content p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
    }
    
    .hero-section {
        padding: 60px 16px 40px;
    }
    
    .newsletter-section {
        padding: 24px 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
