/* Blog & Footer Premium for PlaysMAX */
:root {
    --pm-primary: #667eea;
    --pm-secondary: #764ba2;
    --pm-bg: #0a0a0a;
    --pm-card: #1a1a1a;
    --pm-text: #ffffff;
    --pm-text-muted: #a0a0a0;
}

.pm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Grid */
.pm-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pm-blog-card {
    background: var(--pm-card);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: var(--pm-text);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.pm-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--pm-primary);
}

.pm-blog-category {
    color: var(--pm-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pm-blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pm-blog-card p {
    color: var(--pm-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pm-blog-link {
    font-weight: 600;
    color: var(--pm-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mega Footer */
.pm-footer-premium {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid #1a1a1a;
    color: var(--pm-text);
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.pm-footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pm-footer-brand p {
    color: var(--pm-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.pm-footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--pm-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-footer-links li {
    margin-bottom: 12px;
}

.pm-footer-links a {
    color: var(--pm-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.pm-footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-secondary));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-footer-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.pm-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    color: var(--pm-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .pm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pm-footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .pm-footer-grid {
        grid-template-columns: 1fr;
    }
    .pm-footer-brand {
        grid-column: span 1;
    }
}
