.blog-post-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-header {
    width: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    display: flex;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(19, 161, 116, 0.2) 0%, transparent 60%);
}

.post-header-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.post-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.post-header-image {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.post-header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

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

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

.post-header .post-category {
    display: inline-block;
    background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    width: 150px;
    text-align: center;
}

.post-header .post-title {
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.post-header .post-meta {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.post-header .post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-header .post-meta strong {
    color: #fff;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 15px;
    background: #fff;
}

.post-main-content {
    background: #fff;
    padding: 0 15px;
}

.post-body {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
}

.post-body h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #13A174;
}

.post-body h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.post-body blockquote {
    border-left: 4px solid #13A174;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    color: #495057;
    font-size: 18px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.post-body a {
    color: #13A174;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-body a:hover {
    color: #0d8a5f;
}

.post-body code {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.post-body pre {
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.post-tags-section {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.post-tags-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tags .tag {
    background: linear-gradient(135deg, rgba(19, 161, 116, 0.1) 0%, rgba(13, 138, 95, 0.1) 100%);
    color: #13A174;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 161, 116, 0.2);
}

.post-tags .tag:hover {
    background: #13A174;
    color: #fff;
    transform: translateY(-2px);
}

.author-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    margin: 40px 0;
    border: 2px solid #e9ecef;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: #13A174;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.author-info p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-social {
    font-size: 14px;
    color: #6c757d;
}

.author-social a {
    color: #13A174;
    text-decoration: none;
}

.author-social a:hover {
    text-decoration: underline;
}

.share-section {
    margin: 40px 0;
}

.share-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}

.share-btn.copy {
    background: #6c757d;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.related-posts {
    margin: 40px 0;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(19, 161, 116, 0.15);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-title {
    display: block;
    padding: 15px;
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 600;
    line-height: 1.4;
}

.comments-section {
    margin: 50px 0;
}

.comments-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a2e;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.comment-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.comment-form h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

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

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-comment-btn {
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(19, 161, 116, 0.3);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.comment-item:hover {
    border-color: rgba(19, 161, 116, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: #13A174;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.comment-author {
    font-size: 16px;
    color: #1a1a2e;
}

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

.comment-text {
    color: #495057;
    line-height: 1.6;
    font-size: 15px;
}

.post-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: 18px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #13A174;
}

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

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

.toc-list a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.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;
}

.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: background 0.3s ease;
}

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

.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: background 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;
}

@media (max-width: 1024px) {
    .post-header-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    .post-header-image {
        height: 300px;
    }

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

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

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

@media (max-width: 768px) {
    .post-header {
        min-height: auto;
        padding: 40px 20px;
    }

    .post-header-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-header-image {
        height: 250px;
    }

    .post-header .post-title {
        font-size: 32px;
    }

    .post-header .post-meta {
        gap: 15px;
        font-size: 13px;
    }

    .post-content-wrapper {
        padding: 20px 0;
    }

    .post-body {
        font-size: 15px;
    }

    .post-body h2 {
        font-size: 26px;
    }

    .post-body h3 {
        font-size: 20px;
    }

    .post-body blockquote {
        font-size: 16px;
        padding: 15px 20px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comment-form {
        padding: 20px;
    }

    .comment-item {
        flex-direction: column;
        text-align: center;
    }

    .comment-avatar {
        margin: 0 auto;
    }

    .comment-header {
        justify-content: center;
    }

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

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