.page-container {
    margin: 2rem 3rem;
    padding: 2rem 4rem;
    border-radius: 3rem;
    background-color: rgba(85, 77, 81, 0.2);
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    user-select: none;
}

.page-content {
    width: 100%;
    margin: 0 auto;
}

.page-card {
    background-image: url("../bk/slim.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: inset 0 0 2rem -0.5rem rgba(212, 145, 243, 0.533);
    overflow: hidden;
}

.page-header {
    text-align: center;
    width: 30%;
    margin: 0.3rem auto;
    padding: 0 2rem 0 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(145, 168, 243, 0.3);
    border-radius: 3rem;
    box-shadow: inset 0 0 1.5rem -0.5rem rgba(212, 145, 243, 0.733);
    text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}

.page-meta {
    display: flex;
    justify-content: center;
    background-color: rgba(145, 168, 243, 0.3);
    width: 70%;
    margin: 0 auto;
    padding: 0.6rem;
    border-radius: 3rem;
}

.page-author-section {
    margin: 0 auto 1.5rem auto;
    max-width: 50%;
}

.meta-author-large {
    display: block;
    color: white;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem;
    background-color: rgba(243, 145, 227, 0.4);
    border-radius: 1rem;
    text-align: center;
    border: 0.2rem solid rgba(243, 145, 227, 0.6);
}

.meta-date,
.meta-author {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background-color: rgba(243, 145, 227, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;

}

.meta-date:hover,
.meta-author:hover {
    background-color: rgba(145, 168, 243, 0.4);
    transform: translateY(-0.2rem);
}

.page-featured-image {
    margin: 2rem 0;
    text-align: center;
}

.featured-img {
    width: 100%;
    max-height: 30rem;
    object-fit: cover;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.4);
    border: 0.5rem solid rgba(212, 145, 243, 0.3);
    transition: all 0.5s ease;
}

.featured-img:hover {
    transform: scale(1.01);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
    border-color: rgba(231, 27, 170, 0.5);
}

.page-body {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.page-body>p {
    background-color: rgba(0, 123, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    border-left: 0.4rem solid rgba(145, 168, 243, 0.7);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
    color: white;
    margin: 2.5rem 0 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background-color: rgba(145, 168, 243, 0.2);
    border-radius: 1.5rem;
    box-shadow: inset 0 0 1rem -0.3rem rgba(212, 145, 243, 0.733);
}

.page-body ul,
.page-body ol {
    background-color: rgba(85, 77, 81, 0.2);
    padding: 1.5rem 2.5rem;
    border-radius: 1.5rem;
    margin: 1.5rem 0;
    list-style-position: inside;
}

.page-body li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.page-body li::marker {
    color: #91a8f3;
}

.page-body blockquote {
    background-color: rgba(212, 145, 243, 0.1);
    border-left: 0.5rem solid rgba(145, 168, 243, 0.7);
    padding: 2rem 2.5rem;
    border-radius: 0 1.5rem 1.5rem 0;
    margin: 2.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.page-body blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(145, 168, 243, 0.3);
    position: absolute;
    top: -1rem;
    left: 1rem;
}

.page-body a {
    color: #d491f3;
    font-weight: 600;
    text-decoration: none;
    padding: 0.1rem 0.3rem;
    border-radius: 0.3rem;
    background-color: rgba(212, 145, 243, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(212, 145, 243, 0.3);
}

.page-body a:hover {
    color: #91a8f3;
    background-color: rgba(145, 168, 243, 0.2);
    border-bottom: 1px solid #91a8f3;
}

.page-body img:not(.featured-img) {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.2);
    border: 0.3rem solid rgba(145, 168, 243, 0.2);
}

.page-body pre,
.page-body code {
    background-color: rgba(0, 0, 0, 0.3);
    color: #f8f8f2;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(145, 168, 243, 0.2);
}

.page-body pre {
    overflow-x: auto;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Tablas */
.page-body table {
    width: 100%;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
    border-collapse: collapse;
    border: 1px solid rgba(145, 168, 243, 0.2);
}

.page-body table th,
.page-body table td {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.page-body table th {
    background-color: rgba(145, 168, 243, 0.3);
    font-weight: bold;
    color: white;
}

.page-body table tr:nth-child(even) {
    background-color: rgba(85, 77, 81, 0.1);
}

.page-body table tr:hover {
    background-color: rgba(145, 168, 243, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .page-card {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
        padding: 1rem;
    }

    .page-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .page-taxonomies {
        flex-direction: column;
        align-items: center;
    }

    .page-body>p {
        padding: 1rem;
    }

    .featured-img {
        max-height: 40vh;
    }
}