:root {
    --midnight: #0D0F12;
    --charcoal: #1A1E24;
    --cold-ash: #A8B0BA;
    --ivory: #F2EFE8;
    --steel: #53687A;
    --copper: #A46A3F;
    --copper-hover: #8E5933;
    --deep-wine: #5B2230;
    --fog: #2B3138;
    --font-sans: system-ui, -apple-system, 'Inter', 'Segoe UI', Roboto, Helvetica, sans-serif;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--midnight);
    color: var(--ivory);
    font-family: var(--font-sans);
    line-height: 1.5;
}

.dpc-site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ivory);
}

a {
    color: var(--steel);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--copper);
}

/* HEADER */
.dpc-header {
    background: var(--charcoal);
    border-bottom: 1px solid var(--fog);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
}

.dpc-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.dpc-logo__link {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cold-ash) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.dpc-logo__label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--cold-ash);
    margin-left: 0.2rem;
}

.dpc-logo__tagline {
    font-size: 0.7rem;
    color: var(--cold-ash);
    letter-spacing: 0.5px;
}

.dpc-nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.dpc-nav__link {
    color: var(--cold-ash);
    font-weight: 500;
    font-size: 0.95rem;
}

.dpc-nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.dpc-nav-toggle__line {
    width: 28px;
    height: 2px;
    background: var(--ivory);
    transition: 0.2s;
}

/* BUTTONS */
.dpc-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
}

.dpc-btn--primary {
    background: var(--copper);
    color: var(--ivory);
}

.dpc-btn--primary:hover {
    background: var(--copper-hover);
    transform: translateY(-2px);
}

.dpc-btn--outline {
    border-color: var(--steel);
    color: var(--ivory);
    background: transparent;
}

.dpc-btn--outline:hover {
    border-color: var(--copper);
    background: rgba(164,106,63,0.1);
}

.dpc-btn--accent {
    background: var(--deep-wine);
    color: var(--ivory);
}

.dpc-btn--accent:hover {
    background: #6e2a3c;
    transform: translateY(-2px);
}

.dpc-link-arrow {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dpc-link-arrow::after {
    content: "→";
    transition: transform 0.2s;
}

.dpc-link-arrow:hover::after {
    transform: translateX(4px);
}

/* CONTAINER & GRID */
.dpc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dpc-grid {
    display: grid;
    gap: 2rem;
}

.dpc-grid--2cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dpc-grid--3cols {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.dpc-grid--4cols {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CARDS */
.dpc-card {
    background: var(--charcoal);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--fog);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dpc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.4);
    border-color: var(--steel);
}

.dpc-card__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dpc-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dpc-card__title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.dpc-card__title a {
    color: var(--ivory);
}

.dpc-card__title a:hover {
    color: var(--copper);
}

.dpc-card__meta {
    font-size: 0.75rem;
    color: var(--cold-ash);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dpc-card__excerpt {
    color: var(--cold-ash);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* HERO */
.dpc-hero {
    padding: 5rem 0;
    background: radial-gradient(ellipse at 30% 40%, var(--charcoal) 0%, var(--midnight) 100%);
    border-bottom: 1px solid var(--fog);
}

.dpc-hero__badge {
    display: inline-block;
    background: var(--deep-wine);
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.dpc-hero__title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.dpc-hero__accent {
    color: var(--copper);
}

.dpc-hero__desc {
    font-size: 1.1rem;
    color: var(--cold-ash);
    max-width: 600px;
    margin-bottom: 2rem;
}

.dpc-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ARTIST GRID */
.dpc-artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.dpc-artist-card {
    background: var(--charcoal);
    border: 1px solid var(--fog);
    border-radius: 60px;
    padding: 0.8rem 1.2rem;
    text-align: center;
    transition: all 0.2s;
}

.dpc-artist-card:hover {
    border-color: var(--copper);
    transform: scale(0.98);
}

.dpc-artist-name {
    display: block;
    font-weight: 600;
    color: var(--ivory);
}

.dpc-artist-role {
    font-size: 0.7rem;
    color: var(--cold-ash);
}

/* FILM SECTION */
.dpc-section--film {
    background: linear-gradient(120deg, var(--deep-wine) 0%, #2f1822 100%);
    margin: 2rem 0;
    border-radius: 32px;
}

.dpc-film-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    padding: 3rem 2rem;
}

.dpc-film__content {
    flex: 1;
}

.dpc-film__label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.dpc-film__title {
    font-size: 2rem;
    margin: 1rem 0;
}

.dpc-film__text {
    color: #e2cfcf;
    margin-bottom: 1.5rem;
}

.dpc-film__visual {
    flex: 0.7;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23F2EFE8" stroke-width="0.5"><path d="M2 4L12 2L22 4L12 22L2 4Z" fill="%235B2230" stroke="%23A46A3F"/><circle cx="12" cy="9" r="3" fill="%23A46A3F"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.5;
}

/* NEWS ITEMS */
.dpc-news-item {
    background: var(--charcoal);
    border-left: 3px solid var(--copper);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
}

.dpc-news-item__date {
    font-size: 0.7rem;
    color: var(--copper);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.dpc-news-item__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.dpc-tag {
    background: rgba(83,104,122,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--cold-ash);
    margin-right: 0.5rem;
}

/* PAGINATION */
.dpc-pagination {
    margin-top: 3rem;
    text-align: center;
}

.dpc-pagination .pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    list-style: none;
}

.dpc-pagination .page-item a, .dpc-pagination .page-item span {
    background: var(--charcoal);
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    color: var(--ivory);
}

.dpc-pagination .active span {
    background: var(--copper);
}

/* FOOTER */
.dpc-footer {
    background: var(--charcoal);
    border-top: 1px solid var(--fog);
    margin-top: 4rem;
    padding: 3rem 2rem 1.5rem;
}

.dpc-footer__content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.dpc-footer__col {
    flex: 1;
    min-width: 180px;
}

.dpc-footer__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ivory);
}

.dpc-footer__logo span {
    color: var(--copper);
}

.dpc-footer__description {
    color: var(--cold-ash);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.dpc-footer__title {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.dpc-footer__links {
    list-style: none;
}

.dpc-footer__links li {
    margin-bottom: 0.5rem;
}

.dpc-footer__links a {
    color: var(--cold-ash);
    font-size: 0.85rem;
}

.dpc-footer__bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--fog);
    color: var(--cold-ash);
    font-size: 0.75rem;
}

/* MARKDOWN CONTENT & TABLES */
.dpc-markdown {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    color: var(--cold-ash);
    overflow-x: auto;
}

.dpc-markdown h2, .dpc-markdown h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Table styles */
.dpc-markdown table,
.dpc-content-wrapper table,
.dpc-single__content table,
.dpc-archive-header__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    background: var(--midnight);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.dpc-markdown th,
.dpc-content-wrapper th,
.dpc-single__content th,
.dpc-archive-header__content th {
    background-color: var(--steel);
    color: var(--ivory);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--fog);
}

.dpc-markdown td,
.dpc-content-wrapper td,
.dpc-single__content td,
.dpc-archive-header__content td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--fog);
    color: var(--cold-ash);
}

.dpc-markdown tr:last-child td,
.dpc-content-wrapper tr:last-child td,
.dpc-single__content tr:last-child td,
.dpc-archive-header__content tr:last-child td {
    border-bottom: none;
}

.dpc-markdown tr:hover,
.dpc-content-wrapper tr:hover,
.dpc-single__content tr:hover,
.dpc-archive-header__content tr:hover {
    background-color: rgba(83,104,122,0.15);
}

.dpc-markdown thead tr,
.dpc-content-wrapper thead tr,
.dpc-single__content thead tr,
.dpc-archive-header__content thead tr {
    background: var(--charcoal);
}

/* Responsive tables */
@media (max-width: 768px) {
    .dpc-markdown,
    .dpc-content-wrapper,
    .dpc-single__content {
        overflow-x: auto;
    }
    .dpc-markdown table,
    .dpc-content-wrapper table,
    .dpc-single__content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Additional styles for archive and single titles */
.dpc-archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--copper);
    padding-left: 1rem;
}

.dpc-single__title {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.dpc-blog-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .dpc-nav-toggle {
        display: flex;
    }
    .dpc-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--charcoal);
        transition: 0.3s;
        padding: 2rem;
        border-right: 1px solid var(--fog);
    }
    .dpc-nav.active {
        left: 0;
    }
    .dpc-nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    .dpc-grid--3cols, .dpc-grid--4cols {
        grid-template-columns: 1fr;
    }
    .dpc-hero__actions {
        flex-direction: column;
    }
    .dpc-container {
        padding: 0 1.2rem;
    }
    .dpc-archive-title, .dpc-single__title, .dpc-blog-title {
        font-size: 1.8rem;
    }
}
