.page-container {
    padding-top: 100px;
    min-height: 80vh;
    background: transparent;
}

.page-title,
.landing-title,
.article-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-align: center;
    color: var(--text-main);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-main), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 1.05rem;
    max-width: 640px;
    margin: -1rem auto 2rem;
    line-height: 1.65;
}

.list-section {
    padding: 3rem 0 4rem;
}

.list-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--primary-color);
}

.list-header img {
    width: 280px;
    border-radius: 0;
    box-shadow: -12px 12px 0 rgba(233, 30, 140, 0.12);
    border: 1px solid var(--border-color);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.list-header h1.page-title {
    margin-bottom: 0.8rem;
    text-align: left;
    -webkit-text-fill-color: var(--text-main);
    background: none;
}

.list-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 3rem;
}

.list-card {
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
}

.list-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 0 28px rgba(233, 30, 140, 0.2);
}

.list-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
    filter: brightness(0.9);
}

.list-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.card-body {
    padding: 1.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body .date {
    font-size: 0.72rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'Orbitron', sans-serif;
}

.card-body h2,
.card-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.card-body h2 a:hover,
.card-body h3 a:hover {
    color: var(--accent-color);
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 0;
}

.page-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), #c4157a);
    color: #fff;
    border-color: rgba(233, 30, 140, 0.5);
    box-shadow: var(--glow-pink);
}

.article-detail,
.show-landing {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
}

.article-meta {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.article-meta i {
    color: var(--accent-color);
    margin-right: 4px;
}

.article-meta .url a {
    color: var(--accent-color);
}

.article-summary {
    padding: 1.4rem 1.6rem;
    background: rgba(0, 245, 212, 0.05);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 0;
}

.article-summary p {
    color: var(--text-muted);
    line-height: 1.65;
}

.article-summary strong {
    color: var(--text-main);
}

.article-content,
.landing-content {
    background: var(--bg-card);
    padding: 2.2rem 2rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: none;
}

.article-content p,
.landing-content p {
    margin-bottom: 1.2rem;
}

.article-content h2,
.article-content h3,
.landing-content h2,
.landing-content h3 {
    margin: 2rem 0 0.8rem;
    color: var(--text-main);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 1rem;
}

.article-content img,
.landing-content img {
    margin: 1.5rem 0;
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: -10px 10px 0 rgba(233, 30, 140, 0.1);
}

.meta-info {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-info a {
    color: var(--accent-color);
}

@media (max-width: 1100px) {
    .list-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .article-content,
    .landing-content {
        padding: 1.5rem 1.2rem;
        font-size: 0.95rem;
    }

    .page-title,
    .landing-title,
    .article-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
        margin-bottom: 1.2rem;
    }

    .list-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card-body {
        padding: 1.2rem;
    }

    .pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .page-btn {
        width: 100%;
        text-align: center;
    }

    .list-header {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .list-header img {
        width: 100%;
        max-width: 400px;
    }

    .list-header h1.page-title {
        text-align: center;
    }

    .article-meta {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-meta .url {
        margin-left: 0 !important;
    }
}
