.page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}
.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
    padding: 10px 15px;
    position: relative;
    display: block;
    text-align: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.breadcrumbs::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 7px;
    background: linear-gradient(45deg, #000, #fff, #000, #fff);
    background-size: 200% 200%;
    animation: borderSpin 4s linear infinite;
    z-index: -1;
}
@keyframes borderSpin {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}
.breadcrumbs a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: #000;
}
.breadcrumbs span {
    color: #1a1a1a;
}
.page-content {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.page-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px;
    line-height: 1.3;
    text-align: center;
}
.page-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.page-date {
    color: #1a1a1a;
}
.page-share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.page-share-buttons .share-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
}
.page-share-buttons a,
.page-share-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    text-decoration: none;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.page-share-buttons a:hover,
.page-share-buttons button:hover {
    background: #000;
    color: #fff;
}
.page-share-buttons i {
    font-size: 16px;
}
.page-image {
    margin: 20px 0;
    text-align: center;
}
.page-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    object-fit: cover;
}
.page-divider {
    border: 0;
    height: 1px;
    background: #e0e8f0;
    margin: 25px 0;
}
.page-text {
    line-height: 1.7;
    font-size: 18px;
    color: #000;
    margin-top: 20px;
}
.page-text p {
    margin: 0 0 20px;
}
.page-text a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.page-text a:hover {
    color: #000;
}
.page-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
    font-size: 14px;
}
.page-notification.show {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .page-container {
        padding: 0 15px;
        margin: 20px auto;
    }
    .breadcrumbs {
        font-size: 12px;
        padding: 8px 12px;
    }
    .page-content {
        padding: 20px;
        margin-top: 20px;
        border-radius: 10px;
    }
    .page-title {
        font-size: 24px;
    }
    .page-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }
    .page-share-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .page-share-buttons a,
    .page-share-buttons button {
        width: 32px;
        height: 32px;
    }
    .page-image img {
        max-height: 400px;
    }
    .page-text {
        font-size: 16px;
        margin-top: 15px;
    }
}
@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
    }
    .page-meta {
        font-size: 13px;
    }
    .page-image img {
        max-height: 300px;
    }
    .page-text {
        font-size: 15px;
    }
}