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

.breadcrumbs-section {
    padding-top: 140px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--honey-primary);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}
.video-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.video-container video {
    max-width: 100%;
    height: auto;
}

.post-header {
    padding: 60px 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 157, 0, 0.1));
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--honey-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.category-badge:hover {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.3), rgba(255, 157, 0, 0.2));
    transform: translateY(-2px);
}

.post-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFB800, #FF9D00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 28px;
    color: #0A0A0F;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.meta-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.meta-item i {
    color: var(--honey-primary);
    font-size: 15px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
    color: #1877F2;
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.share-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077B5;
    color: #0077B5;
}

.share-btn.email:hover {
    background: rgba(234, 67, 53, 0.2);
    border-color: #EA4335;
    color: #EA4335;
}

.share-btn.copy:hover {
    background: rgba(255, 184, 0, 0.2);
    border-color: var(--honey-primary);
    color: var(--honey-primary);
}

.image-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.post-content-section {
    padding: 40px 0 80px;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.post-main {
    min-width: 0;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.3) 100%);
}
.post-body {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.post-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 48px 0 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 184, 0, 0.3);
}

.post-body h3 {
    font-size: 26px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 36px 0 20px;
}

.post-body h4 {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 28px 0 16px;
}

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

.post-body a {
    color: var(--honey-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-body a:hover {
    color: var(--honey-glow);
}

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

.post-body li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.post-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: rgba(255, 184, 0, 0.05);
    border-left: 4px solid var(--honey-primary);
    border-radius: 8px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

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

.post-body code {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--honey-primary);
}

.post-body pre {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow-x: auto;
    margin: 32px 0;
}

.post-body pre code {
    padding: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
}

.post-tags-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.tags-title i {
    color: var(--honey-primary);
}

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

.tag-item {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #3B82F6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3B82F6;
    transform: translateY(-2px);
}


.author-bio-section {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.05), rgba(255, 157, 0, 0.02));
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    margin-top: 48px;
}

.author-bio-avatar {
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--honey-primary);
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
}

.author-bio-role {
    font-size: 14px;
    color: var(--honey-primary);
    margin-bottom: 12px;
}

.author-bio-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.nav-post {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-post:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-4px);
}

.nav-post.prev-post {
    text-align: left;
}

.nav-post.next-post {
    text-align: right;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--honey-primary);
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.post-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.sidebar-title i {
    color: var(--honey-primary);
}

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

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

.toc-link {
    display: block;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: rgba(255, 184, 0, 0.1);
    border-left-color: var(--honey-primary);
    color: var(--honey-primary);
    padding-left: 16px;
}

.toc-level-2 .toc-link {
    padding-left: 24px;
    font-size: 13px;
}

.toc-empty {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateX(4px);
}

.related-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-image-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 8px;
    color: rgba(255, 184, 0, 0.5);
    font-size: 32px;
}

.related-post-content {
    flex: 1;
    min-width: 0;
}

.related-post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.related-post-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.related-post-meta i {
    color: var(--honey-primary);
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 157, 0, 0.05));
    border-color: rgba(255, 184, 0, 0.3);
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB800, #FF9D00);
    border-radius: 50%;
    font-size: 24px;
    color: #0A0A0F;
}

.newsletter-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.newsletter-form input {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--honey-primary);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #FFB800, #FF9D00);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0A0A0F;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.back-to-posts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-posts:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--honey-primary);
    color: var(--honey-primary);
}

.related-posts-mobile {
    display: none;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.section-title i {
    color: var(--honey-primary);
}

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

.related-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.2);
}

.related-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}

.related-card-image-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 157, 0, 0.05));
    color: rgba(255, 184, 0, 0.3);
    font-size: 48px;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
}

.related-card-content {
    padding: 20px;
}

.related-card-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 184, 0, 0.2);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--honey-primary);
    margin-bottom: 12px;
}

.related-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.related-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.related-card-meta i {
    color: var(--honey-primary);
}

.floating-actions {
    position: fixed;
    bottom: 130px;
    right: 33px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: #0A0A0F;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.fab-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(255, 184, 0, 0.6);
}

.floating-share-menu {
    position: fixed;
    bottom: 180px;
    right: 38px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.floating-share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-menu-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-menu-btn.facebook {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.share-menu-btn.twitter {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
}

.share-menu-btn.linkedin {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077B5;
}

.share-menu-btn.copy {
    background: rgba(255, 184, 0, 0.2);
    border-color: var(--honey-primary);
}

.share-menu-btn:hover {
    transform: scale(1.1);
}

.copy-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFB800, #FF9D00);
    border-radius: 50px;
    color: #0A0A0F;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.copy-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.youtube-video{
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 8px;
}
.youtube-video iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.youtube-caption-text,.image-caption {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-style: italic;
}
@media (max-width: 1200px) {
    .post-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        display: none;
    }

    .related-posts-mobile {
        display: block;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .featured-image {
        height: 400px;
    }
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .meta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .nav-post.next-post {
        text-align: left;
    }

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

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

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

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

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

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

    .featured-image {
        height: 300px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .fab-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .floating-share-menu {
        bottom: 90px;
        right: 20px;
    }
    .post-body img{
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .meta-items{
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .breadcrumbs {
        font-size: 12px;
    }
    .breadcrumbs-section{
        padding-top: 160px;
    }
    .post-title {
        font-size: 24px;
    }

    .category-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

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

    .author-bio-avatar {
        margin: 0 auto;
    }
}
