.main-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Post Header */
.post-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.post-header .container {
    position: relative;
    z-index: 2;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.post-header p {
    font-size: 1.125rem;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

/* Post Content */
.post-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 2rem;
}

.post-thumbnail {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.post-thumbnail:hover {
    transform: scale(1.02);
}

.post-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #1f2937;
    line-height: 1.3;
}

.post-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    color: white;
}

/* Video Container */
.video-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.video-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.video-link:hover {
    color: #b91c1c;
    text-decoration: none;
}

/* Back to Home Button */
.back-to-home {
    margin-top: 3rem;
    text-align: center;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
}

.back-to-home .btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .post-header {
        padding: 3rem 0;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-header p {
        font-size: 1rem;
    }

    .post-content {
        padding: 2rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content p {
        font-size: 1rem;
    }

    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .post-header {
        padding: 2rem 0;
    }

    .post-header h1 {
        font-size: 1.75rem;
    }

    .post-header p {
        font-size: 0.875rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-content h2 {
        font-size: 1.25rem;
    }

    .post-content p {
        font-size: 0.875rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}