.blog-hero {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(19, 161, 116, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(42, 115, 245, 0.2) 0%, transparent 50%);
    animation: heroPulse 10s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.hero-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
}

.category-btn:hover {
    border-color: #13A174;
    color: #13A174;
}

.category-btn.active {
    background: #13A174;
    border-color: #13A174;
    color: #fff;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-post {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(19, 161, 116, 0.15);
}

.blog-post.featured {
    grid-template-columns: 350px 1fr;
    border: 2px solid #13A174;
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.post-category {
    background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-date {
    color: #6c757d;
    font-size: 13px;
}

.post-author {
    color: #13A174;
    font-size: 13px;
    font-weight: 500;
}

.post-title {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-post.featured .post-title {
    font-size: 26px;
}

.post-excerpt {
    color: #495057;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.read-more {
    color: #13A174;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0d8a5f;
}

.load-more {
    text-align: center;
    padding: 30px 0;
}

.load-more-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 161, 116, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 161, 116, 0.4);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #13A174;
}

.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.popular-title {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.popular-posts a:hover .popular-title {
    color: #13A174;
}

.popular-date {
    color: #6c757d;
    font-size: 12px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #13A174;
    color: #fff;
}

.recent-games {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-game {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.recent-game:hover {
    background: #f8f9fa;
}

.recent-game img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.game-name {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
}

.newsletter p {
    color: #495057;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #13A174;
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #13A174;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0d8a5f;
}

.news-ticker {
    background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.ticker-label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    color: #fff;
    font-size: 14px;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    margin-right: 50px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #13A174;
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .news-ticker {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .ticker-content {
        animation: none;
        white-space: normal;
        text-align: center;
        line-height: 1.6;
    }

    .ticker-content span {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 200px;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .blog-container {
        width: 95%;
        margin: 20px auto;
        gap: 20px;
    }

    .blog-categories {
        padding: 15px;
        gap: 8px;
    }

    .category-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .blog-post {
        grid-template-columns: 1fr;
    }

    .blog-post.featured {
        grid-template-columns: 1fr;
    }

    .post-image {
        height: 200px;
    }

    .post-content {
        padding: 20px;
    }

    .post-title {
        font-size: 18px;
    }

    .blog-post.featured .post-title {
        font-size: 20px;
    }

    .post-excerpt {
        font-size: 14px;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .newsletter {
        grid-column: span 1;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .sidebar-widget h3 {
        font-size: 18px;
    }
}