:root {
    --bg: #f8f0e8;
    --panel: #f2e8de;
    --panel2: #fcf6f0;
    --text: #3d2c1e;
    --muted: rgba(248, 240, 232, 0.96);
    --muted-light: #f5ede4;
    --line: rgba(200, 175, 160, 0.25);
    --accent: #ffffff;
    --accent2: #f0e4d8;
    --ok: #d4b8a8;
    --shadow: 0 20px 45px rgba(140, 110, 90, 0.08);
    --radius: 6px;
    --radius2: 10px;
    --max: 1400px;
    --rainbow: linear-gradient(135deg, #e8d5c8 0%, #ddc8b8 30%, #d2bba8 60%, #c7ae9a 100%);
    --btn-glow: rgba(200, 175, 160, 0.2);
    --header-bg: rgba(248, 240, 232, 0.95);
    --card-overlay: linear-gradient(0deg, rgba(242, 232, 222, 0.92) 0%, rgba(242, 232, 222, 0.3) 50%, rgba(242, 232, 222, 0) 100%);
    --hover-lift: 0 8px 30px rgba(140, 110, 90, 0.08);
    --font-main: 'Cormorant Garamond', 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, li {
    list-style: none;
}

.wrap-nylon-tv-style {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: 9999;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.top-stripe {
    height: 2px;
    background: var(--rainbow);
    opacity: 0.4;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    height: 76px;
    padding: 0 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.brand .logo-text {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text);
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.brand .logo-text .light {
    color: var(--ok);
    font-weight: 300;
    font-style: italic;
    margin-left: 2px;
    letter-spacing: 5px;
}

.brand .logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--rainbow);
    box-shadow: 0 0 20px rgba(200, 175, 160, 0.15);
}

.brand:hover .logo-text {
    letter-spacing: 5px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
}

nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    color: var(--text);
    font-weight: 400;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    font-size: 12px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: 1.5px;
    font-family: var(--font-main);
    text-transform: uppercase;
    opacity: 0.5;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

nav a:hover {
    opacity: 1;
    border-color: var(--line);
}

nav a:hover::after {
    width: 35%;
}

nav a.active {
    opacity: 1;
    font-weight: 600;
    border-color: var(--line);
}

nav a.active::after {
    width: 35%;
}

.menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 16px;
    line-height: 1;
    z-index: 100;
}

.menu-btn:hover {
    border-color: var(--ok);
    background: rgba(255, 255, 255, 0.2);
}

.menu-btn .menu-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.menu-btn svg {
    width: 16px;
    height: 16px;
    stroke: #3d2c1e;
}

@media (max-width: 920px) {
    .menu-btn {
        display: flex;
    }
    
    .brand .logo-text {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--panel);
        backdrop-filter: blur(10px);
        padding: 60px 18px 30px;
        flex-direction: column;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-right: 1px solid var(--line);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.04);
    }
    
    nav.show {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 10px 14px;
        background: transparent;
        border: 1px solid transparent;
        border-left: 2px solid transparent;
        border-radius: var(--radius);
        color: var(--text);
        font-weight: 400;
        font-size: 14px;
        text-align: left;
        white-space: normal;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        opacity: 1;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    nav a:hover {
        border-color: var(--line);
        border-left-color: var(--ok);
        background: rgba(200, 175, 160, 0.04);
    }
    
    nav a.active {
        border-color: var(--line);
        border-left-color: var(--ok);
        background: rgba(200, 175, 160, 0.06);
    }
}

.hero {
    margin-top: 56px;
    padding: 20px 0 14px;
}

.hero-main-nylon-tv-style {
    background: var(--panel2);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 24px 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-main-nylon-tv-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.4;
}

.hero-main-nylon-tv-style::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.2), transparent 60%);
    pointer-events: none;
}

.hero-main-nylon-tv-style h1 {
    font-family: var(--font-main);
    font-size: clamp(24px, 2.8vw, 24px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    position: relative;
    color: var(--text);
}

.hero-main-nylon-tv-style h1 em {
    font-weight: 400;
    font-style: italic;
    opacity: 0.35;
    letter-spacing: 2px;
}

.hero-main-nylon-tv-style p {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 15px;
    margin: 0;
    max-width: 95%;
    position: relative;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.7;
}

.hero-side {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 20px;
    box-shadow: var(--shadow);
}

.notice {
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text);
    font-size: 14px;
    letter-spacing: 0.03em;
    font-family: var(--font-main);
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 24px;
    background: transparent;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    font-size: 12px;
    transition: all 0.4s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 2.5px;
    font-family: var(--font-main);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg);
    border-color: var(--text);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-primary::before {
    background: var(--bg);
}

.btn-primary:hover {
    color: var(--text);
    border-color: var(--bg);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.btn-small {
    padding: 5px 16px;
    font-size: 11px;
    border-radius: var(--radius);
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    font-family: var(--font-main);
    letter-spacing: 2px;
}

.btn-small:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}

.chip:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.chip::before {
    content: '◆';
    font-size: 7px;
    opacity: 0.25;
}

.section {
    margin: 32px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 14px;
}

.section-header h2 {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    letter-spacing: -0.01em;
    position: relative;
}

.section-header h2 em {
    font-weight: 400;
    font-style: italic;
    opacity: 0.3;
    letter-spacing: 2px;
}

.section-header .sub {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 14px;
    margin: 5px 0 0;
    opacity: 0.45;
    letter-spacing: 0.04em;
    font-weight: 400;
    font-style: italic;
}

.grid {
    column-count: 4;
    column-gap: 16px;
    margin: 18px 0;
}

.post {
    break-inside: avoid;
    margin-bottom: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

.post:hover {
    border-color: var(--ok);
    box-shadow: var(--hover-lift);
    transform: translateY(-3px);
}

.post-thumb {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.post:hover .post-thumb img {
    filter: brightness(1.03);
    transform: scale(1.01);
}

.post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 10px 12px;
    background: var(--card-overlay);
    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-nylon-tv-style {
    display: flex;
    justify-content: center;
}

.post-actions-nylon-tv-style .btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid var(--line);
    color: var(--text);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    min-width: 90px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: var(--radius);
    font-family: var(--font-main);
    text-transform: uppercase;
}

.post-actions-nylon-tv-style .btn::before {
    background: var(--text);
}

.post-actions-nylon-tv-style .btn:hover {
    color: var(--bg);
    border-color: var(--text);
}

.post-actions-nylon-tv-style .btn:hover::before {
    left: 0;
}

.post-info {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 4px 10px;
    background: rgba(248, 240, 232, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    z-index: 2;
}

.post-title {
    font-family: var(--font-main);
    font-size: 12px;
    margin: 0;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.post-meta {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text);
    margin: 0 0 10px;
    opacity: 0.5;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.section .article-nylon-tv-style {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 24px;
    margin: 26px 0;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section .article-nylon-tv-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--rainbow);
    opacity: 0.3;
}

.section .article-nylon-tv-style:first-child {
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .section .article-nylon-tv-style {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
}

.article-nylon-tv-style h2 {
    font-family: var(--font-main);
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.article-nylon-tv-style h2 a {
    position: relative;
}

.article-nylon-tv-style h2 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--text);
    transition: width 0.4s ease;
    opacity: 0.2;
}

.article-nylon-tv-style h2 a:hover::after {
    width: 100%;
}

.article-nylon-tv-style h3 {
    font-family: var(--font-main);
    font-size: 17px;
    margin: 20px 0 10px;
    color: var(--text);
    opacity: 0.5;
    font-weight: 400;
    font-style: italic;
}

.article-nylon-tv-style p {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 15px;
    margin: 0 0 16px;
    line-height: 1.8;
    opacity: 0.65;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.article-nylon-tv-style a {
    position: relative;
    font-weight: 500;
}

.article-nylon-tv-style a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.4s ease;
    opacity: 0.2;
}

.article-nylon-tv-style a:hover::after {
    width: 100%;
}

.article-thumbs-nylon-tv-style {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.article-thumb {
    flex: 0 0 135px;
    max-width: 100%;
}

.article-thumb .post-thumb {
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.article-thumb .post-thumb img {
    aspect-ratio: 2/3;
    object-fit: cover;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 18px 0;
}

.card-pad {
    padding: 20px;
}

.title {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-nylon-tv-style {
    display: inline-block;
    padding: 7px 18px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 12px;
    font-weight: 400;
    transition: all 0.4s ease;
    font-family: var(--font-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pill-nylon-tv-style:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}

footer {
    border-top: 1px solid var(--line);
    background: var(--panel2);
    padding: 36px 20px 20px;
    margin-top: 44px;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.02);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.3;
}

.footer-grid {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    max-width: var(--max);
    margin: 0 auto;
}

.footer-info {
    flex: 0 1 300px;
}

.footer-info h3 {
    font-family: var(--font-main);
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text);
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.3;
}

.footer-info p {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.55;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 12px;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    padding: 7px 14px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    transition: all 0.3s ease;
    min-width: 100px;
}

.footer-badge:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}

.badge-name {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.badge-desc {
    font-family: var(--font-main);
    font-size: 11px;
    opacity: 0.4;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-badge:hover .badge-desc {
    opacity: 0.6;
}

.footer-link-nylon-tv-styles {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
}

.footer-col {
    min-width: 110px;
}

.footer-col h3 {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text);
    letter-spacing: 1.5px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.2;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0 3px 10px;
    border-bottom: none;
    border-left: 2px solid transparent;
    opacity: 0.45;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-col a:hover {
    opacity: 1;
    border-left-color: var(--ok);
    padding-left: 14px;
}

.footer-stamp {
    margin-top: 22px;
    max-width: 125px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: all 0.4s ease;
}

.footer-stamp:hover {
    opacity: 0.9;
    transform: scale(1.02);
    border-color: var(--ok);
    box-shadow: var(--hover-lift);
}

.footer-stamp img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    opacity: 0.35;
    font-family: var(--font-main);
    letter-spacing: 2px;
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .grid {
        column-count: 3;
    }
}

@media (max-width: 1024px) {
    .grid {
        column-count: 2;
    }
    
    .section .article-nylon-tv-style {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 920px) {
    .footer-grid {
        flex-direction: column-reverse;
    }
    
    .footer-link-nylon-tv-styles {
        justify-content: flex-start;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 56px;
    }
    
    .hero-main-nylon-tv-style {
        padding: 20px;
        max-width: 100%;
    }
    
    .hero-main-nylon-tv-style p {
        max-width: 100%;
        font-size: 14px;
    }
    
    .hero-main-nylon-tv-style h1 {
        font-size: 26px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .article-nylon-tv-style {
        padding: 18px;
    }
    
    .article-nylon-tv-style p {
        font-size: 14px;
    }
    
    .grid {
        column-count: 2;
        column-gap: 12px;
    }
    
    .post-content {
        padding: 12px 8px 6px 8px;
    }
    
    .post-actions-nylon-tv-style .btn {
        padding: 4px 14px;
        font-size: 10px;
        min-width: 70px;
        letter-spacing: 1.5px;
    }
    
    .footer-link-nylon-tv-styles {
        gap: 26px;
    }
    
    .links {
        gap: 6px;
    }
    
    .pill-nylon-tv-style {
        padding: 5px 14px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .topbar {
        height: 54px;
        padding: 0 16px;
    }
    
    .brand .logo-text {
        font-size: 16px;
        letter-spacing: 3px;
    }
}

@media (max-width: 640px) {
    .grid {
        column-count: 1;
    }
    
    .article-thumb {
        flex: 0 0 100%;
    }
    
    .title {
        font-size: 22px;
    }
    
    .card-pad {
        padding: 16px;
    }
    
    .footer-link-nylon-tv-styles {
        gap: 22px;
    }
    
    .footer-badge-list {
        gap: 6px;
    }
    
    .footer-badge {
        min-width: 90px;
        padding: 5px 12px;
    }
    
    .badge-name {
        font-size: 12px;
    }
    
    .badge-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .brand .logo-text {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .brand .logo-text .light {
        letter-spacing: 3px;
    }
    
    .hero-main-nylon-tv-style {
        padding: 16px;
    }
    
    .hero-main-nylon-tv-style h1 {
        font-size: 22px;
    }
    
    .hero-side {
        padding: 16px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .post-content {
        padding: 10px 6px 4px 6px;
    }
    
    .post-actions-nylon-tv-style .btn {
        padding: 3px 10px;
        font-size: 9px;
        min-width: 60px;
        letter-spacing: 1px;
    }
    
    .links {
        gap: 5px;
    }
    
    .pill-nylon-tv-style {
        padding: 4px 12px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .footer-link-nylon-tv-styles {
        flex-direction: column;
        gap: 18px;
    }
    
    .footer-badge-list {
        gap: 5px;
    }
    
    .footer-badge {
        min-width: 100%;
    }
}

.post .post-content .btn {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    color: #3d2c1e;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
    font-family: var(--font-main);
    letter-spacing: 1.5px;
}

.post .post-content .btn::before {
    display: none;
}

.post .post-content .btn:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
    color: #3d2c1e;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.3);
}

.post .post-content .btn-primary {
    background: transparent;
    border: none;
    box-shadow: none;
}

.post .post-content .btn-primary:hover {
    background: transparent;
    border: none;
    box-shadow: none;
}

.post, .hero-main-nylon-tv-style, .hero-side, .card, .btn, .pill-nylon-tv-style, .footer-badge, .article-thumb .post-thumb {
    border-color: var(--line) !important;
}

.post:hover, .btn:hover, .pill-nylon-tv-style:hover, .footer-badge:hover {
    border-color: var(--ok) !important;
}



/* Category grid - 6 columns desktop, 2 columns mobile */
.grid-cat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.post-cat {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    aspect-ratio: 2/3;
}

.post-cat:hover {
    border-color: var(--ok);
    box-shadow: var(--hover-lift);
    transform: translateY(-3px);
}

.post-thumb-cat {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.post-thumb-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.post-cat:hover .post-thumb-cat img {
    filter: brightness(1.03);
    transform: scale(1.01);
}

.post-content-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 12px 12px;
    background: var(--card-overlay);
    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-nylon-tv-style-cat {
    display: flex;
    justify-content: center;
}

.post-actions-nylon-tv-style-cat .btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid var(--line);
    color: var(--text);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    min-width: 90px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: var(--radius);
    font-family: var(--font-main);
    text-transform: uppercase;
}

.post-actions-nylon-tv-style-cat .btn::before {
    background: var(--text);
}

.post-actions-nylon-tv-style-cat .btn:hover {
    color: var(--bg);
    border-color: var(--text);
}

.post-actions-nylon-tv-style-cat .btn:hover::before {
    left: 0;
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .grid-cat {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .post-content-cat {
        padding: 12px 8px 8px 8px;
    }
    
    .post-actions-nylon-tv-style-cat .btn {
        padding: 4px 12px;
        font-size: 10px;
        min-width: 70px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .post-content-cat {
        padding: 10px 6px 6px 6px;
    }
    
    .post-actions-nylon-tv-style-cat .btn {
        padding: 3px 10px;
        font-size: 9px;
        min-width: 60px;
        letter-spacing: 1px;
    }
}