:root {
    --bg: #07070a;
    --panel: #0e0e14;
    --panel2: #15151e;
    --text: #f0f0f5;
    --muted: rgba(7, 7, 10, 0.96);
    --muted-light: #1a1a2e;
    --line: rgba(0, 229, 255, 0.25);
    --accent: #ffffff;
    --accent2: #1a1a3a;
    --ok: #00e5ff;
    --gold: #00e5ff;
    --gold-light: #66f0ff;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius2: 16px;
    --max: 1400px;
    --rainbow: linear-gradient(135deg, #00e5ff 0%, #33f0ff 30%, #66f0ff 60%, #00e5ff 100%);
    --btn-glow: rgba(0, 229, 255, 0.35);
    --header-bg: rgba(7, 7, 10, 0.95);
    --card-overlay: linear-gradient(0deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.4) 50%, rgba(7, 7, 10, 0) 100%);
    --hover-lift: 0 12px 40px rgba(0, 0, 0, 0.5);
    --font-main: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica', sans-serif;
    --gold-glow: 0 0 30px rgba(0, 229, 255, 0.08);
    --border-gold: 2px solid rgba(0, 229, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, li {
    list-style: none;
}

.wrap-sissy-vds-xxx {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    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: 12px 24px;
    background: var(--panel);
    color: var(--text);
    border: var(--border-gold);
    border-radius: var(--radius);
    z-index: 9999;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.top-stripe {
    height: 3px;
    background: var(--rainbow);
    opacity: 0.6;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    height: 80px;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.brand .logo-text {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text);
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.05);
}

.brand .logo-text .light {
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
    margin-left: 4px;
    letter-spacing: 6px;
}

.brand .logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rainbow);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.brand:hover .logo-text {
    letter-spacing: 7px;
    text-shadow: 0 0 60px rgba(0, 229, 255, 0.08);
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    color: var(--text);
    font-weight: 400;
    border-radius: var(--radius);
    transition: all 0.35s ease;
    position: relative;
    font-size: 11px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: 2.5px;
    font-family: var(--font-body);
    text-transform: uppercase;
    opacity: 0.5;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

nav a:hover {
    opacity: 1;
    border-color: var(--line);
    background: rgba(0, 229, 255, 0.04);
}

nav a:hover::after {
    width: 40%;
}

nav a.active {
    opacity: 1;
    font-weight: 600;
    border-color: var(--line);
    background: rgba(0, 229, 255, 0.06);
}

nav a.active::after {
    width: 40%;
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: var(--border-gold);
    border-radius: var(--radius);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 18px;
    line-height: 1;
    z-index: 100;
}

.menu-btn:hover {
    border-color: var(--gold);
    background: rgba(0, 229, 255, 0.08);
    box-shadow: var(--gold-glow);
}

.menu-btn .menu-icon {
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.menu-btn svg {
    width: 18px;
    height: 18px;
    stroke: #f0f0f5;
}

@media (max-width: 920px) {
    .menu-btn {
        display: flex;
    }
    
    .brand .logo-text {
        font-size: 16px;
        letter-spacing: 4px;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--panel);
        backdrop-filter: blur(12px);
        padding: 70px 20px 30px;
        flex-direction: column;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.35s ease;
        border-right: 1px solid var(--line);
        box-shadow: 5px 0 40px rgba(0, 0, 0, 0.5);
    }
    
    nav.show {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 12px 18px;
        background: transparent;
        border: 1px solid transparent;
        border-left: 3px solid transparent;
        border-radius: var(--radius);
        color: var(--text);
        font-weight: 400;
        font-size: 13px;
        text-align: left;
        white-space: normal;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 1;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    nav a:hover {
        border-color: var(--line);
        border-left-color: var(--gold);
        background: rgba(0, 229, 255, 0.04);
    }
    
    nav a.active {
        border-color: var(--line);
        border-left-color: var(--gold);
        background: rgba(0, 229, 255, 0.06);
    }
}

.hero {
    margin-top: 60px;
    padding: 24px 0 16px;
}

.hero-main-sissy-vds-xxx {
    background: var(--panel2);
    border: var(--border-gold);
    border-radius: var(--radius2);
    padding: 32px 40px;
    box-shadow: var(--shadow), var(--gold-glow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-main-sissy-vds-xxx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rainbow);
    opacity: 0.5;
}

.hero-main-sissy-vds-xxx::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.04), transparent 60%);
    pointer-events: none;
}

.hero-main-sissy-vds-xxx h1 {
    font-family: var(--font-main);
    font-size: clamp(28px, 3.2vw, 32px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    position: relative;
    color: var(--text);
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.04);
}

.hero-main-sissy-vds-xxx h1 em {
    font-weight: 400;
    font-style: italic;
    opacity: 0.3;
    letter-spacing: 3px;
    color: var(--gold);
}

.hero-main-sissy-vds-xxx p {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 15px;
    margin: 0;
    max-width: 90%;
    position: relative;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.8;
}

.hero-side {
    background: var(--panel);
    border: var(--border-gold);
    border-radius: var(--radius2);
    padding: 24px;
    box-shadow: var(--shadow);
}

.notice {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: var(--border-gold);
    background: rgba(0, 229, 255, 0.04);
    color: var(--text);
    font-size: 13px;
    letter-spacing: 0.04em;
    font-family: var(--font-body);
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    background: transparent;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    font-size: 11px;
    transition: all 0.4s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 3px;
    font-family: var(--font-body);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    transform: translateY(-2px);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #0099cc);
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.15);
}

.btn-primary::before {
    background: var(--bg);
}

.btn-primary:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--bg);
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.btn-small {
    padding: 6px 18px;
    font-size: 10px;
    border-radius: var(--radius);
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    font-family: var(--font-body);
    letter-spacing: 2.5px;
    min-height: 36px;
}

.btn-small:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 11px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 0.8px;
}

.chip:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.chip::before {
    content: '◆';
    font-size: 7px;
    opacity: 0.3;
    color: var(--gold);
}

.section {
    margin: 40px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 16px;
}

.section-header h2 {
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    letter-spacing: -0.01em;
    position: relative;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.03);
}

.section-header h2 em {
    font-weight: 400;
    font-style: italic;
    opacity: 0.25;
    letter-spacing: 3px;
    color: var(--gold);
}

.section-header .sub {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 14px;
    margin: 6px 0 0;
    opacity: 0.4;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-style: italic;
}

.grid {
    column-count: 4;
    column-gap: 18px;
    margin: 20px 0;
}

.post {
    break-inside: avoid;
    margin-bottom: 18px;
    background: var(--panel);
    border: var(--border-gold);
    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(--gold);
    box-shadow: var(--hover-lift), var(--gold-glow);
    transform: translateY(-4px);
}

.post-thumb {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.post-thumb::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 229, 255, 0.06);
    border-radius: calc(var(--radius) - 4px);
    pointer-events: none;
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.post:hover .post-thumb img {
    filter: brightness(1.08) saturate(1.05);
    transform: scale(1.02);
}

.post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 12px 14px;
    background: var(--card-overlay);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-sissy-vds-xxx {
    display: flex;
    justify-content: center;
}

.post-actions-sissy-vds-xxx .btn {
    background: rgba(0, 229, 255, 0.08);
    border: 2px solid rgba(0, 229, 255, 0.25);
    color: var(--text);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    padding: 6px 20px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    text-transform: uppercase;
    min-height: 38px;
}

.post-actions-sissy-vds-xxx .btn::before {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.post-actions-sissy-vds-xxx .btn:hover {
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.post-actions-sissy-vds-xxx .btn:hover::before {
    left: 0;
}

.post-info {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 6px 12px;
    background: rgba(7, 7, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
    border-radius: var(--radius);
    border: var(--border-gold);
    z-index: 2;
}

.post-title {
    font-family: var(--font-body);
    font-size: 11px;
    margin: 0;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.post-meta {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text);
    margin: 0 0 12px;
    opacity: 0.4;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.section .article-sissy-vds-xxx {
    background: var(--panel);
    border: var(--border-gold);
    border-radius: var(--radius2);
    padding: 28px 32px;
    margin: 30px 0;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section .article-sissy-vds-xxx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--rainbow);
    opacity: 0.4;
}

.section .article-sissy-vds-xxx:first-child {
    margin-right: 12px;
}

@media (min-width: 1025px) {
    .section .article-sissy-vds-xxx {
        width: calc(50% - 12px);
        display: inline-block;
        vertical-align: top;
    }
}

.article-sissy-vds-xxx h2 {
    font-family: var(--font-main);
    font-size: 24px;
    margin: 0 0 14px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.article-sissy-vds-xxx h2 a {
    position: relative;
}

.article-sissy-vds-xxx h2 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
    opacity: 0.4;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.article-sissy-vds-xxx h2 a:hover::after {
    width: 100%;
}

.article-sissy-vds-xxx h3 {
    font-family: var(--font-main);
    font-size: 18px;
    margin: 22px 0 12px;
    color: var(--text);
    opacity: 0.4;
    font-weight: 400;
    font-style: italic;
}

.article-sissy-vds-xxx p {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 15px;
    margin: 0 0 18px;
    line-height: 1.9;
    opacity: 0.55;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.article-sissy-vds-xxx a {
    position: relative;
    font-weight: 500;
    color: var(--gold);
}

.article-sissy-vds-xxx a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
    opacity: 0.4;
}

.article-sissy-vds-xxx a:hover::after {
    width: 100%;
}

.article-thumbs-sissy-vds-xxx {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.article-thumb {
    flex: 0 0 145px;
    max-width: 100%;
}

.article-thumb .post-thumb {
    border-radius: var(--radius);
    border: var(--border-gold);
    overflow: hidden;
}

.article-thumb .post-thumb img {
    aspect-ratio: 2/3;
    object-fit: cover;
}

.card {
    border: var(--border-gold);
    border-radius: var(--radius2);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 22px 0;
}

.card-pad {
    padding: 24px 28px;
}

.title {
    font-family: var(--font-main);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    color: var(--text);
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.03);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-sissy-vds-xxx {
    display: inline-block;
    padding: 8px 22px;
    background: transparent;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 11px;
    font-weight: 400;
    transition: all 0.4s ease;
    font-family: var(--font-body);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    min-height: 40px;
}

.pill-sissy-vds-xxx:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.15);
}

footer {
    border-top: 1px solid var(--line);
    background: var(--panel);
    padding: 48px 24px 24px;
    margin-top: 52px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rainbow);
    opacity: 0.4;
}

.footer-grid {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;
    max-width: var(--max);
    margin: 0 auto;
}

.footer-info {
    flex: 0 1 340px;
}

.footer-info h3 {
    font-family: var(--font-main);
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--text);
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.4;
}

.footer-info p {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 14px;
    opacity: 0.45;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 14px;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    padding: 8px 18px;
    background: transparent;
    border: var(--border-gold);
    border-radius: var(--radius);
    color: var(--text);
    transition: all 0.3s ease;
    min-width: 110px;
}

.footer-badge:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.15);
}

.badge-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.badge-desc {
    font-family: var(--font-body);
    font-size: 10px;
    opacity: 0.35;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-badge:hover .badge-desc {
    opacity: 0.6;
}

.footer-link-sissy-vds-xxxs {
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
}

.footer-col {
    min-width: 120px;
}

.footer-col h3 {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--text);
    letter-spacing: 2px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--rainbow);
    opacity: 0.3;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0 4px 12px;
    border-bottom: none;
    border-left: 2px solid transparent;
    opacity: 0.4;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-col a:hover {
    opacity: 1;
    border-left-color: var(--gold);
    padding-left: 18px;
    color: var(--gold-light);
}

.footer-stamp {
    margin-top: 24px;
    max-width: 135px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--border-gold);
    transition: all 0.4s ease;
}

.footer-stamp:hover {
    opacity: 0.9;
    transform: scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--hover-lift), var(--gold-glow);
}

.footer-stamp img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 12px;
    opacity: 0.25;
    font-family: var(--font-body);
    letter-spacing: 3px;
    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-sissy-vds-xxx {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 920px) {
    .footer-grid {
        flex-direction: column-reverse;
    }
    
    .footer-link-sissy-vds-xxxs {
        justify-content: flex-start;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 56px;
    }
    
    .hero-main-sissy-vds-xxx {
        padding: 24px;
        max-width: 100%;
    }
    
    .hero-main-sissy-vds-xxx p {
        max-width: 100%;
        font-size: 14px;
    }
    
    .hero-main-sissy-vds-xxx h1 {
        font-size: 26px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 4px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .article-sissy-vds-xxx {
        padding: 20px;
    }
    
    .article-sissy-vds-xxx p {
        font-size: 14px;
    }
    
    .grid {
        column-count: 2;
        column-gap: 14px;
    }
    
    .post-content {
        padding: 14px 10px 8px 10px;
    }
    
    .post-actions-sissy-vds-xxx .btn {
        padding: 5px 16px;
        font-size: 9px;
        min-width: 80px;
        letter-spacing: 2px;
        min-height: 34px;
    }
    
    .footer-link-sissy-vds-xxxs {
        gap: 30px;
    }
    
    .links {
        gap: 8px;
    }
    
    .pill-sissy-vds-xxx {
        padding: 6px 16px;
        font-size: 10px;
        letter-spacing: 2px;
        min-height: 36px;
    }
    
    .topbar {
        height: 60px;
        padding: 0 16px;
    }
    
    .brand .logo-text {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

@media (max-width: 640px) {
    .grid {
        column-count: 1;
    }
    
    .article-thumb {
        flex: 0 0 100%;
    }
    
    .title {
        font-size: 24px;
    }
    
    .card-pad {
        padding: 18px 20px;
    }
    
    .footer-link-sissy-vds-xxxs {
        gap: 26px;
    }
    
    .footer-badge-list {
        gap: 8px;
    }
    
    .footer-badge {
        min-width: 100px;
        padding: 6px 14px;
    }
    
    .badge-name {
        font-size: 12px;
    }
    
    .badge-desc {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .brand .logo-text {
        font-size: 13px;
        letter-spacing: 3px;
    }
    
    .brand .logo-text .light {
        letter-spacing: 4px;
    }
    
    .hero-main-sissy-vds-xxx {
        padding: 18px 16px;
    }
    
    .hero-main-sissy-vds-xxx h1 {
        font-size: 22px;
    }
    
    .hero-side {
        padding: 18px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .post-content {
        padding: 12px 8px 6px 8px;
    }
    
    .post-actions-sissy-vds-xxx .btn {
        padding: 4px 12px;
        font-size: 8px;
        min-width: 70px;
        letter-spacing: 1.5px;
        min-height: 30px;
    }
    
    .links {
        gap: 6px;
    }
    
    .pill-sissy-vds-xxx {
        padding: 5px 14px;
        font-size: 9px;
        letter-spacing: 1.5px;
        min-height: 32px;
    }
    
    .footer-link-sissy-vds-xxxs {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-badge-list {
        gap: 6px;
    }
    
    .footer-badge {
        min-width: 100%;
    }
}

.post .post-content .btn {
    background: rgba(0, 229, 255, 0.06);
    border: 2px solid rgba(0, 229, 255, 0.2);
    box-shadow: none;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
    font-family: var(--font-body);
    letter-spacing: 2px;
    min-height: 32px;
}

.post .post-content .btn::before {
    display: none;
}

.post .post-content .btn:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.08);
    color: var(--text);
}

.post .post-content .btn-primary {
    background: rgba(0, 229, 255, 0.06);
    border: 2px solid rgba(0, 229, 255, 0.2);
    box-shadow: none;
}

.post .post-content .btn-primary:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.08);
}

.post, .hero-main-sissy-vds-xxx, .hero-side, .card, .btn, .pill-sissy-vds-xxx, .footer-badge, .article-thumb .post-thumb {
    border-color: var(--line) !important;
}

.post:hover, .btn:hover, .pill-sissy-vds-xxx:hover, .footer-badge:hover {
    border-color: var(--gold) !important;
}

.grid-cat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.post-cat {
    position: relative;
    background: var(--panel);
    border: var(--border-gold);
    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(--gold);
    box-shadow: var(--hover-lift), var(--gold-glow);
    transform: translateY(-4px);
}

.post-thumb-cat {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    position: relative;
}

.post-thumb-cat::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 229, 255, 0.04);
    border-radius: calc(var(--radius) - 4px);
    pointer-events: none;
}

.post-thumb-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.post-cat:hover .post-thumb-cat img {
    filter: brightness(1.08) saturate(1.05);
    transform: scale(1.02);
}

.post-content-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 14px 14px 14px;
    background: var(--card-overlay);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-sissy-vds-xxx-cat {
    display: flex;
    justify-content: center;
}

.post-actions-sissy-vds-xxx-cat .btn {
    background: rgba(0, 229, 255, 0.08);
    border: 2px solid rgba(0, 229, 255, 0.25);
    color: var(--text);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    padding: 6px 20px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    text-transform: uppercase;
    min-height: 38px;
}

.post-actions-sissy-vds-xxx-cat .btn::before {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.post-actions-sissy-vds-xxx-cat .btn:hover {
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.post-actions-sissy-vds-xxx-cat .btn:hover::before {
    left: 0;
}

@media (max-width: 1200px) {
    .grid-cat {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .post-content-cat {
        padding: 14px 10px 10px 10px;
    }
    
    .post-actions-sissy-vds-xxx-cat .btn {
        padding: 5px 14px;
        font-size: 9px;
        min-width: 80px;
        letter-spacing: 2px;
        min-height: 34px;
    }
}

@media (max-width: 480px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .post-content-cat {
        padding: 12px 8px 8px 8px;
    }
    
    .post-actions-sissy-vds-xxx-cat .btn {
        padding: 4px 12px;
        font-size: 8px;
        min-width: 70px;
        letter-spacing: 1.5px;
        min-height: 30px;
    }
}

/* ===== HEADER V2 ===== */
.header-v2 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.wrap-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

.brand-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-icon {
    font-size: 22px;
    color: #00e5ff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-v2:hover .brand-icon {
    transform: rotate(90deg) scale(1.1);
    opacity: 1;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f0f0f5;
    text-transform: uppercase;
}

.brand-accent {
    color: #00e5ff;
    font-weight: 300;
    letter-spacing: 3px;
    margin-left: 2px;
}

.nav-v2 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-link-v2 {
    display: inline-block;
    padding: 6px 18px;
    color: #f0f0f5;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
    position: relative;
}

.nav-link-v2::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.nav-link-v2:hover {
    opacity: 1;
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.04);
}

.nav-link-v2:hover::after {
    width: 35%;
}

.nav-link-v2.active {
    opacity: 1;
    font-weight: 600;
    border-color: rgba(0, 229, 255, 0.15);
    background: rgba(0, 229, 255, 0.06);
}

.nav-link-v2.active::after {
    width: 35%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.search-btn {
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    color: #f0f0f5;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.search-btn:hover {
    opacity: 1;
    border-color: #00e5ff;
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.06);
}

.menu-btn-v2 {
    display: none;
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    color: #f0f0f5;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn-v2:hover {
    border-color: #00e5ff;
    background: rgba(0, 229, 255, 0.06);
}

.menu-btn-v2.active-v2 {
    border-color: #00e5ff;
}

.menu-icon-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-btn-v2.active-v2 .menu-icon-v2 {
    transform: rotate(90deg);
}

@media (max-width: 920px) {
    .menu-btn-v2 {
        display: flex;
    }

    .nav-v2 {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(14, 14, 20, 0.98);
        backdrop-filter: blur(12px);
        padding: 80px 24px 30px;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.35s ease;
        border-right: 1px solid rgba(0, 229, 255, 0.1);
        box-shadow: 5px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-v2.show-v2 {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav-link-v2 {
        display: block;
        padding: 12px 16px;
        font-size: 13px;
        letter-spacing: 2px;
        text-align: left;
        border-left: 2px solid transparent;
        border-radius: 8px;
        opacity: 1;
        width: 100%;
    }

    .nav-link-v2::after {
        display: none;
    }

    .nav-link-v2:hover {
        border-left-color: #00e5ff;
        border-color: rgba(0, 229, 255, 0.1);
        background: rgba(0, 229, 255, 0.04);
    }

    .nav-link-v2.active {
        border-left-color: #00e5ff;
        border-color: rgba(0, 229, 255, 0.1);
        background: rgba(0, 229, 255, 0.06);
    }

    .brand-name {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .brand-icon {
        font-size: 18px;
    }

    .header-inner {
        height: 64px;
    }

    .wrap-header {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .brand-accent {
        letter-spacing: 2px;
    }

    .brand-icon {
        font-size: 15px;
    }

    .search-btn {
        width: 34px;
        height: 34px;
    }

    .search-btn svg {
        width: 15px;
        height: 15px;
    }

    .menu-btn-v2 {
        width: 34px;
        height: 34px;
    }

    .menu-btn-v2 svg {
        width: 17px;
        height: 17px;
    }

    .header-inner {
        height: 56px;
        gap: 12px;
    }

    .wrap-header {
        padding: 0 12px;
    }

    .nav-v2 {
        width: 100%;
        padding: 70px 16px 20px;
    }
}

/* ===== FOOTER V2 ===== */
.footer-v2 {
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    background: rgba(7, 7, 10, 0.98);
    padding: 48px 24px 20px;
    margin-top: 52px;
    position: relative;
}

.footer-v2::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e5ff, #33f0ff, #00e5ff, transparent);
    opacity: 0.3;
}

.wrap-footer-v2 {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid-v2 {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-col-v2 {
    display: flex;
    flex-direction: column;
}

.footer-col-brand {
    gap: 12px;
}

.footer-brand-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer-brand-icon {
    font-size: 20px;
    color: #00e5ff;
    opacity: 0.6;
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f0f0f5;
    text-transform: uppercase;
}

.footer-brand-accent {
    color: #00e5ff;
    font-weight: 300;
    letter-spacing: 3px;
    margin-left: 2px;
}

.footer-desc-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    color: #f0f0f5;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.45;
    margin: 0 0 4px;
    letter-spacing: 0.03em;
    max-width: 380px;
}

.footer-legal-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    color: #f0f0f5;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.25;
    margin: 4px 0 0;
    letter-spacing: 0.5px;
}

.footer-badge-list-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 4px;
}

.footer-badge-v2 {
    display: flex;
    flex-direction: column;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    color: #f0f0f5;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 90px;
}

.footer-badge-v2:hover {
    background: #00e5ff;
    color: #07070a;
    border-color: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.15);
}

.badge-name-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-desc-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 10px;
    opacity: 0.35;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.footer-badge-v2:hover .badge-desc-v2 {
    opacity: 0.6;
}

.footer-heading-v2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #f0f0f5;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #00e5ff;
    opacity: 0.3;
}

.footer-links-v2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.footer-links-v2 li {
    margin: 0;
}

.footer-link-v2 {
    font-family: 'Inter', Helvetica, sans-serif;
    color: #f0f0f5;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0 3px 10px;
    border-left: 2px solid transparent;
    opacity: 0.4;
    letter-spacing: 0.5px;
}

.footer-link-v2:hover {
    opacity: 1;
    border-left-color: #00e5ff;
    padding-left: 16px;
    color: #66f0ff;
}

.footer-bottom-v2 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 229, 255, 0.06);
    color: #f0f0f5;
    font-size: 12px;
    opacity: 0.2;
    font-family: 'Inter', Helvetica, sans-serif;
    letter-spacing: 2.5px;
}

@media (max-width: 1024px) {
    .footer-grid-v2 {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-desc-v2 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-v2 {
        padding: 32px 16px 16px;
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-heading-v2 {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .footer-link-v2 {
        font-size: 12px;
    }

    .footer-desc-v2 {
        font-size: 13px;
    }

    .footer-brand-name {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .footer-badge-v2 {
        min-width: 80px;
        padding: 5px 12px;
    }

    .badge-name-v2 {
        font-size: 11px;
    }

    .badge-desc-v2 {
        font-size: 9px;
    }

    .footer-bottom-v2 {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .footer-v2 {
        padding: 24px 12px 12px;
        margin-top: 32px;
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col-brand {
        grid-column: 1;
    }

    .footer-heading-v2 {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .footer-heading-v2::after {
        width: 20px;
    }

    .footer-link-v2 {
        font-size: 12px;
        padding: 2px 0 2px 8px;
    }

    .footer-link-v2:hover {
        padding-left: 12px;
    }

    .footer-desc-v2 {
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-brand-name {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .footer-brand-accent {
        letter-spacing: 2px;
    }

    .footer-brand-icon {
        font-size: 16px;
    }

    .footer-badge-list-v2 {
        gap: 6px;
    }

    .footer-badge-v2 {
        min-width: 100%;
        padding: 5px 12px;
        align-items: center;
    }

    .footer-bottom-v2 {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding-top: 16px;
    }

    .footer-legal-v2 {
        font-size: 10px;
    }
}

.section-categories {
    margin: 48px 0 32px;
}

.section-header-cat {
    margin-bottom: 28px;
    text-align: center;
}

.section-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.08);
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.12);
    margin-bottom: 8px;
}

.section-title-cat {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: #f0f0f5;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    text-shadow: 0 0 60px rgba(0, 229, 255, 0.03);
}

.section-title-cat::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, transparent);
    margin: 10px auto 0;
    opacity: 0.3;
}

.section-sub-cat {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 15px;
    color: #f0f0f5;
    opacity: 0.4;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin: 0;
}

.grid-cat-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
}

.post-cat-v2 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #0e0e14;
    border: 1px solid rgba(0, 229, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.post-cat-v2:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.04);
}

.post-thumb-cat-v2 {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.post-thumb-cat-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.post-cat-v2:hover .post-thumb-cat-v2 img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.05);
}

.post-overlay-cat-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 18px;
    background: linear-gradient(0deg, rgba(7, 7, 10, 0.92) 0%, rgba(7, 7, 10, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 2;
    min-height: 55%;
}

.post-cat-v2:hover .post-overlay-cat-v2 {
    padding-bottom: 22px;
    background: linear-gradient(0deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.5) 50%, rgba(7, 7, 10, 0.1) 100%);
}

.post-cat-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #f0f0f5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.post-cat-v2:hover .post-cat-name {
    color: #00e5ff;
    letter-spacing: 2.5px;
}

.post-cat-v2::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(0, 229, 255, 0.04);
    border-radius: 9px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.post-cat-v2:hover::after {
    border-color: rgba(0, 229, 255, 0.1);
}

@media (max-width: 1200px) {
    .grid-cat-v2 {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .grid-cat-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .section-categories {
        margin: 32px 0 24px;
    }

    .section-title-cat {
        font-size: 26px;
    }

    .post-cat-name {
        font-size: 14px;
    }

    .post-overlay-cat-v2 {
        padding: 18px 12px 14px;
        min-height: 50%;
    }
}

@media (max-width: 600px) {
    .grid-cat-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-header-cat {
        margin-bottom: 18px;
    }

    .section-title-cat {
        font-size: 22px;
    }

    .section-sub-cat {
        font-size: 13px;
    }

    .section-badge {
        font-size: 9px;
        letter-spacing: 3px;
        padding: 3px 12px;
    }

    .post-cat-name {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .post-overlay-cat-v2 {
        padding: 14px 10px 12px;
        min-height: 45%;
    }

    .post-cat-v2:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

@media (max-width: 400px) {
    .grid-cat-v2 {
        gap: 8px;
    }

    .post-cat-name {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .post-overlay-cat-v2 {
        padding: 10px 6px 8px;
        min-height: 40%;
    }
}

.article-butt-v2 {
    margin-bottom: 32px;
    background: var(--panel);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.article-butt-v2:hover {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.article-butt-inner {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.article-butt-image {
    flex: 0 0 280px;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}

.article-butt-image .post-thumb-butt {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.article-butt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.article-butt-v2:hover .article-butt-image img {
    transform: scale(1.03);
}

.article-butt-content {
    flex: 1;
    padding: 28px 32px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-butt-content .section-header-butt {
    margin-bottom: 14px;
}

.article-butt-content .section-header-butt h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #f0f0f5;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.article-butt-content .section-header-butt h2 a {
    color: #f0f0f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-butt-content .section-header-butt h2 a:hover {
    color: #00e5ff;
}

.article-butt-content .section-header-butt .sub-butt {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 14px;
    color: #00e5ff;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 0;
}

.article-butt-content p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #f0f0f5;
    opacity: 0.55;
    margin: 0;
    letter-spacing: 0.02em;
}

.article-butt-content p a {
    color: #00e5ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.article-butt-content p a:hover {
    color: #66f0ff;
    border-bottom-color: rgba(0, 229, 255, 0.3);
}

@media (max-width: 768px) {
    .article-butt-inner {
        flex-direction: column;
    }

    .article-butt-image {
        flex: 0 0 auto;
        height: 260px;
        min-height: auto;
        width: 100%;
    }

    .article-butt-content {
        padding: 20px;
    }

    .article-butt-content .section-header-butt h2 {
        font-size: 20px;
    }

    .article-butt-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .article-butt-image {
        height: 200px;
    }

    .article-butt-content {
        padding: 16px;
    }

    .article-butt-content .section-header-butt h2 {
        font-size: 18px;
    }

    .article-butt-content p {
        font-size: 12px;
        line-height: 1.7;
    }

    .article-butt-content .section-header-butt .sub-butt {
        font-size: 12px;
    }

    .article-butt-v2 {
        margin-bottom: 20px;
        border-radius: 8px;
    }
}



/* ============================================
   STYLES FOR OLD HEADER + FOOTER
   ============================================ */

/* ===== HEADER ===== */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 7, 10, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 0 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    white-space: nowrap;
}

.page-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-header-nav li {
    display: inline-block;
}

.page-header-nav .btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-shadow: none;
}

.page-header-nav .btn:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--gold);
    color: var(--bg);
    box-shadow: var(--gold-glow);
}

.page-header-nav .btn-cta {
    background: linear-gradient(135deg, #00e5ff, #0077ff);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}

.page-header-nav .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
    border-color: transparent;
    background: linear-gradient(135deg, #33f0ff, #3388ff);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text);
    font-size: 28px;
    padding: 6px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--panel);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 30px 25px;
    border-right: 1px solid var(--line);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.mobile-menu-header .site-logo {
    font-size: 1.4rem;
}

.mobile-menu-content a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover {
    color: var(--gold);
    padding-left: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    .page-header {
        height: 70px;
        padding: 0 16px;
    }
    .site-logo {
        font-size: 1.4rem;
    }
    .page-header-nav.desktop-menu {
        display: none !important;
    }
}


.post .post-content .btn,
.post-content-cat .btn,
.post-actions-sissy-vds-xxx .btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 6px 12px !important;
    min-height: auto !important;
    text-transform: none !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6) !important;
    transition: all 0.3s ease !important;
}

.post .post-content .btn:hover,
.post-content-cat .btn:hover,
.post-actions-sissy-vds-xxx .btn:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.3) !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
}

.post .post-content .btn::before,
.post-content-cat .btn::before,
.post-actions-sissy-vds-xxx .btn::before {
    display: none !important;
}

/* ===== FOOTER ===== */
.page-footer {
    margin-top: 60px;
    padding: 40px 0 30px;
    border-top: 1px solid var(--line);
    text-align: center;
    background: var(--panel);
}

.page-footer .site-logo {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin: 20px 0;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
}

.footer-badges img {
    height: 25px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(0.6);
}

.footer-badges img:hover {
    opacity: 1;
    filter: grayscale(0);
}

.footer-disclaimer {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-disclaimer p {
    margin: 6px 0;
}

.footer-copy {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}