:root {
    --bg: #f4d459;
    --panel: #ffe27a;
    --panel2: #fff0a8;
    --text: #1a3a6b;
    --muted: rgba(255, 255, 255, 0.96);
    --muted-light: #ffffff;
    --line: rgba(67, 146, 198, 0.35);
    --accent: #4392c6;
    --accent2: #ef476e;
    --ok: #4392c6;
    --shadow: 0 6px 16px rgba(26, 58, 107, 0.18);
    --radius: 8px;
    --radius2: 14px;
    --max: 1280px;
    --rainbow: linear-gradient(90deg,
        #4392c6 0%,
        #3a80b3 25%,
        #ef476e 50%,
        #d93a5f 75%,
        #4392c6 100%);
    --btn-glow: rgba(67, 146, 198, 0.5);
    --header-bg: rgba(67, 146, 198, 0.95);
    --card-overlay: linear-gradient(to top, rgba(67, 146, 198, 0.65), rgba(67, 146, 198, 0.15) 40%, transparent 70%);
    --hover-lift: 0 10px 24px rgba(26, 58, 107, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: var(--bg);
    background-image: url('/img-12/back.jpg');
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, li {
    list-style: none;
}

.wrap-12x-new-art {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: 9999;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-stripe {
    height: 3px;
    background: var(--rainbow);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    background: #ffffff;
    padding: 6px 22px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(26, 58, 107, 0.2);
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: scale(1.02);
}

.brand img {
    height: 56px;
    width: auto;
    transition: transform 0.2s ease;
}

.brand:hover img {
    transform: scale(1.02);
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3px;
}

nav a {
    display: inline-flex;
    padding: 9px 18px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    font-size: 14px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
}

nav a:hover {
    color: #ffffff;
    background: rgba(239, 71, 110, 0.9);
    border-color: rgba(239, 71, 110, 1);
}

nav a.active {
    color: #ffffff;
    background: #ef476e;
    border-color: #d93a5f;
    box-shadow: 0 2px 8px rgba(26, 58, 107, 0.25);
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 22px;
    line-height: 1;
    z-index: 100;
}

.menu-btn:hover {
    background: rgba(239, 71, 110, 0.9);
    border-color: rgba(239, 71, 110, 1);
}

.menu-btn .menu-icon {
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.menu-btn svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

@media (max-width: 920px) {
    .menu-btn {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid transparent;
        box-shadow: 0 6px 14px rgba(26, 58, 107, 0.15);
    }
    
    nav.show {
        max-height: 400px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 14px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 6px;
    }
    
    nav a {
        display: block;
        padding: 12px 18px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        color: #ffffff;
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        white-space: normal;
    }
    
    nav a:hover {
        background: rgba(239, 71, 110, 0.9);
        color: #ffffff;
        border-color: rgba(239, 71, 110, 1);
    }
    
    nav a.active {
        background: #ef476e;
        color: #ffffff;
        border-color: #d93a5f;
    }
}

.hero {
    padding: 18px 0 18px;
}

.hero-main-12x-new-art {
    background: var(--panel2);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 22px 26px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-main-12x-new-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rainbow);
    border-radius: var(--radius2) var(--radius2) 0 0;
}

.hero-main-12x-new-art::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.25), transparent 60%);
    pointer-events: none;
}

.hero-main-12x-new-art h1 {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    position: relative;
    color: var(--text);
}

.hero-main-12x-new-art p {
    color: var(--text);
    font-size: 15px;
    margin: 0;
    max-width: 100%;
    position: relative;
    opacity: 0.9;
}

.hero-side {
    background: var(--panel);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 22px;
    box-shadow: var(--shadow);
}

.notice {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(67, 146, 198, 0.3);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text);
    font-size: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    background: #4392c6;
    border: 1px solid #3a80b3;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn:hover {
    background: #3a80b3;
    border-color: #2f6c99;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(67, 146, 198, 0.4);
}

.btn-primary {
    background: #ef476e;
    border: 1px solid #d93a5f;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(239, 71, 110, 0.3);
}

.btn-primary:hover {
    background: #d93a5f;
    border-color: #b82e4e;
    box-shadow: 0 6px 16px rgba(239, 71, 110, 0.45);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.btn-small {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 4px;
    background: rgba(67, 146, 198, 0.9);
    border: 1px solid #3a80b3;
    color: #ffffff;
}

.btn-small:hover {
    background: #3a80b3;
    color: #ffffff;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(67, 146, 198, 0.9);
    border: 1px solid #3a80b3;
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.chip:hover {
    background: #3a80b3;
    color: #ffffff;
    border-color: #2f6c99;
}

.chip::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #ef476e;
    border-radius: 50%;
}

.section {
    margin: 26px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 20px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.section-header .sub {
    color: var(--text);
    font-size: 15px;
    margin: 5px 0 0;
    opacity: 0.85;
}

.grid {
    column-count: 4;
    column-gap: 14px;
    margin: 18px 0;
}

.post {
    break-inside: avoid;
    margin-bottom: 14px;
    background: var(--panel);
    border: 1px solid rgba(67, 146, 198, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

.post:hover {
    border-color: rgba(239, 71, 110, 0.6);
    box-shadow: var(--hover-lift);
    transform: translateY(-3px);
}

.post-thumb {
    display: block;
    width: 100%;
    background: rgba(67, 146, 198, 0.1);
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.2s ease;
}

.post:hover .post-thumb img {
    filter: brightness(1.04);
}

.post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 10px 8px 10px;
    background: linear-gradient(to top, rgba(67, 146, 198, 0.9), rgba(67, 146, 198, 0.35) 45%, transparent 92%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-12x-new-art {
    display: flex;
    justify-content: center;
}

.post-actions-12x-new-art .btn {
    background: #ef476e;
    border: 1px solid #d93a5f;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(26, 58, 107, 0.3);
    box-shadow: 0 2px 6px rgba(26, 58, 107, 0.2);
    min-width: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 4px;
}

.post-actions-12x-new-art .btn:hover {
    background: #d93a5f;
    border-color: #b82e4e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 71, 110, 0.4);
}

.post-info {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 4px 10px;
    background: rgba(67, 146, 198, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.post-title {
    font-size: 12px;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.post-meta {
    font-size: 13px;
    color: var(--text);
    margin: 0 0 12px;
    opacity: 0.9;
}

.section .article-12x-new-art {
    background: var(--panel2);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 24px;
    margin: 26px 0;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section .article-12x-new-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--rainbow);
}

.section .article-12x-new-art:first-child {
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .section .article-12x-new-art {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
}

.article-12x-new-art h2 {
    font-size: 24px;
    margin: 0 0 14px;
    color: var(--text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.article-12x-new-art h3 {
    font-size: 19px;
    margin: 22px 0 11px;
    color: var(--text);
    opacity: 0.9;
}

.article-12x-new-art p {
    color: var(--text);
    font-size: 16px;
    margin: 0 0 18px;
    line-height: 1.7;
    opacity: 0.92;
}

.article-thumbs-12x-new-art {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.article-thumb {
    flex: 0 0 180px;
    max-width: 100%;
}

.article-thumb .post-thumb {
    border-radius: var(--radius);
    border: 1px solid rgba(67, 146, 198, 0.35);
}

.card {
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    background: var(--panel2);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 18px 0;
}

.card-pad {
    padding: 22px;
}

.title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
    color: var(--text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-12x-new-art {
    display: inline-block;
    padding: 7px 16px;
    background: #4392c6;
    border: 1px solid #3a80b3;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pill-12x-new-art:hover {
    background: #ef476e;
    color: #ffffff;
    border-color: #d93a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 71, 110, 0.35);
}

footer {
    border-top: 3px solid #4392c6;
    background-color: var(--panel2);
    background-image:
        linear-gradient(rgba(26, 58, 107, 0.1), rgba(26, 58, 107, 0.1)),
        url('/img-12/back.jpg');
    background-repeat: repeat, repeat;
    background-position: top left, top left;
    background-size: auto, auto;
    background-attachment: fixed, fixed;
    padding: 44px 0 18px;
    margin-top: 60px;
    box-shadow: 0 -6px 18px rgba(26, 58, 107, 0.08);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rainbow);
    opacity: 0.9;
}

.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-info {
    flex: 0 1 350px;
    order: 2;
}

.footer-info h3 {
    font-size: 19px;
    margin-bottom: 18px;
    color: var(--text);
    position: relative;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 36px;
    height: 3px;
    background: #ef476e;
    border-radius: 2px;
}

.footer-info p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    opacity: 0.9;
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 14px;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    padding: 9px 14px;
    background: #4392c6;
    border: 1px solid #3a80b3;
    border-radius: 6px;
    color: #ffffff;
    transition: all 0.2s ease;
    min-width: 130px;
    box-shadow: 0 3px 8px rgba(67, 146, 198, 0.25);
}

.footer-badge:hover {
    background: #ef476e;
    border-color: #d93a5f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(239, 71, 110, 0.35);
}

.badge-name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    color: #ffffff;
}

.badge-desc {
    font-size: 11px;
    opacity: 0.9;
    text-transform: lowercase;
    color: #ffffff;
}

.footer-link-12x-new-arts {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
    order: 1;
}

.footer-col {
    min-width: 140px;
}

.footer-col h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--text);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    color: var(--text);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 3px 0;
    border-bottom: 1px solid transparent;
    opacity: 0.9;
}

.footer-col a:hover {
    color: #ef476e;
    border-bottom: 1px solid #ef476e;
    transform: translateX(-4px);
    opacity: 1;
}

.footer-stamp {
    margin-top: 22px;
    max-width: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(67, 146, 198, 0.25);
    border: 1px solid rgba(67, 146, 198, 0.35);
    transition: all 0.2s ease;
}

.footer-stamp:hover {
    opacity: 0.9;
    transform: scale(1.02);
    border-color: #4392c6;
    box-shadow: 0 6px 18px rgba(67, 146, 198, 0.4);
}

.footer-stamp img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(67, 146, 198, 0.35);
    color: var(--text);
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 1100px) {
    .grid {
        column-count: 3;
    }
}

@media (max-width: 1024px) {
    .grid {
        column-count: 2;
    }
    
    .section .article-12x-new-art {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 920px) {
    .footer-grid {
        flex-direction: column-reverse;
    }
    
    .footer-info {
        order: 1;
    }
    
    .footer-link-12x-new-arts {
        justify-content: flex-start;
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero-main-12x-new-art {
        padding: 22px;
        max-width: 100%;
    }
    
    .hero-main-12x-new-art p {
        max-width: 100%;
    }
    
    .hero-main-12x-new-art h1 {
        font-size: 30px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
    }
    
    .article-12x-new-art {
        padding: 18px;
    }
    
    .grid {
        column-count: 2;
        column-gap: 10px;
    }
    
    .post-content {
        padding: 11px 9px 7px 9px;
    }
    
    .post-actions-12x-new-art .btn {
        padding: 5px 12px;
        font-size: 12px;
        min-width: 90px;
    }
    
    .footer-link-12x-new-arts {
        gap: 30px;
    }
    
    .links {
        gap: 8px;
    }
    
    .pill-12x-new-art {
        padding: 6px 13px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .grid {
        column-count: 1;
    }
    
    .article-thumb {
        flex: 0 0 100%;
    }
    
    .title {
        font-size: 26px;
    }
    
    .card-pad {
        padding: 18px;
    }
    
    .footer-link-12x-new-arts {
        gap: 24px;
    }
    
    .footer-badge-list {
        gap: 8px;
    }
    
    .footer-badge {
        min-width: 110px;
        padding: 8px 12px;
    }
    
    .badge-name {
        font-size: 13px;
    }
    
    .badge-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-main-12x-new-art {
        padding: 18px;
    }
    
    .hero-main-12x-new-art h1 {
        font-size: 26px;
    }
    
    .hero-side {
        padding: 18px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .post-content {
        padding: 9px 7px 6px 7px;
    }
    
    .post-actions-12x-new-art .btn {
        padding: 4px 10px;
        font-size: 11px;
        min-width: 80px;
    }
    
    .links {
        gap: 6px;
    }
    
    .pill-12x-new-art {
        padding: 5px 11px;
        font-size: 12px;
    }
    
    .footer-link-12x-new-arts {
        flex-direction: column;
        gap: 18px;
    }
    
    .footer-badge-list {
        gap: 6px;
    }
    
    .footer-badge {
        min-width: 100%;
    }
}

.post .post-content .btn {
    background: #ef476e;
    border: 1px solid #d93a5f;
    box-shadow: 0 2px 6px rgba(26, 58, 107, 0.25);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
    border-radius: 4px;
}

.post .post-content .btn:hover {
    background: #d93a5f;
    border: 1px solid #b82e4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 71, 110, 0.4);
    color: #ffffff;
    text-shadow: none;
}

.post .post-content .btn-primary {
    background: #ef476e;
    border: 1px solid #d93a5f;
    box-shadow: 0 2px 6px rgba(26, 58, 107, 0.25);
}

.post .post-content .btn-primary:hover {
    background: #d93a5f;
    border: 1px solid #b82e4e;
    box-shadow: 0 4px 10px rgba(239, 71, 110, 0.4);
}

.post, .hero-main-12x-new-art, .hero-side, .card, .btn, .pill-12x-new-art, .footer-badge, .article-thumb .post-thumb {
    border-color: rgba(67, 146, 198, 0.35) !important;
}

.post:hover, .btn:hover, .pill-12x-new-art:hover, .footer-badge:hover {
    border-color: rgba(239, 71, 110, 0.7) !important;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: #ffffff;
    padding: 11px 16px;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(26, 58, 107, 0.2);
    transition: transform 0.2s ease;
    border: 3px solid #396ebe;
}

.brand img {
    height: 68px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: scale(1.02);
}

.brand:hover img {
    transform: scale(1.02);
}


.12x-new-art-card {
    background: var(--panel2);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 20px 24px;
    margin: 22px 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.12x-new-art-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--rainbow);
}

.12x-new-art-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.2px;
}

.12x-new-art-card h3 i {
    color: #ef476e;
    font-size: 18px;
}

.12x-new-art-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 22px;
    padding: 0;
    margin: 0;
}

.12x-new-art-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(67, 146, 198, 0.3);
    font-size: 14px;
    line-height: 1.45;
    color: var(--text);
    opacity: 0.95;
    transition: color 0.2s ease;
}

.12x-new-art-card ul li:hover {
    color: #ef476e;
}

.12x-new-art-card ul li:last-child {
    border-bottom: none;
}

.12x-new-art-card ul li i {
    color: #4392c6;
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.12x-new-art-card ul li:hover i {
    color: #ef476e;
}

.12x-new-art-card .site-info {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.35);
    border-left: 3px solid #ef476e;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.95;
}

.12x-new-art-card .site-info p {
    margin: 0;
}

@media (max-width: 640px) {
    .12x-new-art-card {
        padding: 16px;
    }
    
    .12x-new-art-card ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .12x-new-art-card h3 {
        font-size: 18px;
    }
}


/* Post articles */
.article-12x-new-art {
    background: var(--panel2);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 24px 26px;
    margin: 0 0 24px;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: block;
}

.article-12x-new-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--rainbow);
}

.article-12x-new-art .section-header {
    margin-bottom: 14px;
}

.article-12x-new-art .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.article-12x-new-art .section-header h2 a {
    color: #4392c6;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.article-12x-new-art .section-header h2 a:hover {
    color: #ef476e;
    border-bottom: 2px solid #ef476e;
}

.article-12x-new-art .section-header .sub {
    color: var(--text);
    font-size: 15px;
    margin: 6px 0 0;
    opacity: 0.8;
    font-style: italic;
}

.article-12x-new-art p {
    color: var(--text);
    font-size: 16px;
    margin: 0;
    line-height: 1.75;
    opacity: 0.94;
}

.article-12x-new-art p a {
    color: #4392c6;
    font-weight: 600;
    border-bottom: 1px dashed rgba(67, 146, 198, 0.6);
    transition: all 0.2s ease;
}

.article-12x-new-art p a:hover {
    color: #ef476e;
    border-bottom-color: #ef476e;
    border-bottom-style: solid;
}

.article-thumbs-12x-new-art {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0 20px;
}

.article-thumb {
    display: block;
    width: 100%;
}

.article-thumb .post-thumb {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid rgba(67, 146, 198, 0.35);
    overflow: hidden;
    transition: all 0.2s ease;
    background: #f4d459;
}

.article-thumb .post-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 2 / 3;
    transition: transform 0.3s ease;
}

.article-thumb:hover .post-thumb {
    border-color: #ef476e;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(239, 71, 110, 0.25);
}

.article-thumb:hover .post-thumb img {
    transform: scale(1.04);
}

@media (max-width: 1024px) {
    .article-thumbs-12x-new-art {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .article-12x-new-art {
        padding: 20px;
    }
    
    .article-12x-new-art .section-header h2 {
        font-size: 20px;
    }
    
    .article-thumbs-12x-new-art {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .article-12x-new-art p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .article-thumbs-12x-new-art {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .article-12x-new-art .section-header h2 {
        font-size: 18px;
    }
    
    .article-thumbs-12x-new-art {
        margin: 14px 0 16px;
    }
}



/* Model feature posts */
.article-12x-new-art {
    background: var(--panel2);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 24px 26px;
    margin: 0 0 24px;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: block;
}

.article-12x-new-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--rainbow);
}

.article-12x-new-art .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 20px;
    padding: 0;
}

.article-12x-new-art .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.01em;
}

.article-12x-new-art .section-header h2 a {
    color: #4392c6;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.article-12x-new-art .section-header h2 a:hover {
    color: #ef476e;
    border-bottom: 2px solid #ef476e;
}

.article-12x-new-art .section-header .sub {
    color: var(--text);
    font-size: 15px;
    margin: 6px 0 0;
    opacity: 0.82;
    font-style: italic;
}

.article-12x-new-art > p {
    color: var(--text);
    font-size: 16px;
    margin: 0;
    line-height: 1.75;
    opacity: 0.94;
}

.article-12x-new-art > p a {
    color: #4392c6;
    font-weight: 600;
    border-bottom: 1px dashed rgba(67, 146, 198, 0.6);
    transition: all 0.2s ease;
}

.article-12x-new-art > p a:hover {
    color: #ef476e;
    border-bottom-color: #ef476e;
    border-bottom-style: solid;
}

.article-thumbs-12x-new-art {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 18px 0 20px;
    max-width: 520px;
}

.article-thumb {
    display: block;
    width: 100%;
}

.article-thumb .post-thumb {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid rgba(67, 146, 198, 0.35);
    overflow: hidden;
    transition: all 0.2s ease;
    background: #f4d459;
}

.article-thumb .post-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 2 / 3;
    transition: transform 0.3s ease;
}

.article-thumb:hover .post-thumb {
    border-color: #ef476e;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(239, 71, 110, 0.25);
}

.article-thumb:hover .post-thumb img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .article-12x-new-art {
        padding: 20px;
    }
    
    .article-12x-new-art .section-header h2 {
        font-size: 20px;
    }
    
    .article-12x-new-art .section-header .sub {
        font-size: 14px;
    }
    
    .article-thumbs-12x-new-art {
        gap: 12px;
        max-width: 100%;
    }
    
    .article-12x-new-art > p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .article-12x-new-art {
        padding: 18px;
    }
    
    .article-12x-new-art .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-12x-new-art .section-header h2 {
        font-size: 18px;
    }
    
    .article-thumbs-12x-new-art {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}



.blog-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    background: var(--panel2);
    border: 1px solid rgba(67, 146, 198, 0.35);
    border-radius: var(--radius2);
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--rainbow);
}

.blog-item:hover {
    border-color: rgba(239, 71, 110, 0.6);
    transform: translateY(-2px);
    box-shadow: var(--hover-lift);
}

.blog-thumb {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(67, 146, 198, 0.35);
    background: #f4d459;
    transition: border-color 0.2s ease;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 2 / 3;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-thumb {
    border-color: #ef476e;
}

.blog-item:hover .blog-thumb img {
    transform: scale(1.04);
}

.blog-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.blog-date {
    font-size: 12px;
    color: #4392c6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

.blog-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.blog-body h2 a {
    color: var(--text);
    transition: color 0.2s ease;
}

.blog-body h2 a:hover {
    color: #ef476e;
}

.blog-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.9;
    margin: 4px 0 0;
}

@media (max-width: 768px) {
    .blog-item {
        grid-template-columns: 140px 1fr;
        gap: 14px;
        padding: 14px;
    }
    
    .blog-body h2 {
        font-size: 17px;
    }
    
    .blog-body p {
        font-size: 14px;
    }
    
    .blog-date {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .blog-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .blog-thumb {
        max-width: 160px;
    }
}

.\31 2x-new-art-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 18px;
}

.\31 2x-new-art-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 22px;
    padding: 0;
    margin: 0;
}

.\31 2x-new-art-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(67, 146, 198, 0.3);
    font-size: 14px;
    color: var(--text);
}

.\31 2x-new-art-card ul li i {
    color: #4392c6;
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.\31 2x-new-art-card .site-info {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.35);
    border-left: 3px solid #ef476e;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

.\31 2x-new-art-card .site-info p {
    margin: 0;
}