:root {
    --brand-red: #C21E56;
    --dark-gray: #121212;
    --theme-bg: #ffffff;
    --theme-text: #121212;
    --theme-shadow: 0 4px 12px rgba(0,0,0,0.05);
    --border-color: #e0e0e0;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-text: #121212;
    --footer-bg: #f8f8f8;
    --footer-text: #666;
}

[data-theme="dark"] {
    --theme-bg: #121212;
    --theme-text: #ffffff;
    --theme-shadow: 0 4px 12px rgba(0,0,0,0.3);
    --border-color: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(18, 18, 18, 0.95);
    --nav-text: #ffffff;
    --footer-bg: #0a0a0a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--theme-bg);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--theme-text);
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}


/* --- Particles Removed --- */
.bg-particles {
    display: none;
}

.container {
    max-width: 1530px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utilities --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
    .sm-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pb-32 { padding-bottom: 8rem; }
.mt-120 { margin-top: 120px !important; }

.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.relative { position: relative; }

/* --- Visibility Helpers --- */
.hidden { display: none !important; }
.mobile-only { display: none !important; }
.desktop-only { display: flex !important; }

@media (max-width: 1459px) {
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
    .navbar {
        justify-content: space-between !important;
        padding: 15px 20px;
    }
}

/* --- Navigation --- */
.navbar-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: var(--nav-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    border-bottom: 1px solid rgba(253, 193, 214, 0.3);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
}

.nav-logo {
    height: 36px !important;
    width: auto !important;
    display: block;
}

.nav-item-logo {
    display: flex;
    align-items: center;
    padding: 0 10px;
    text-decoration: none;
}


.navbar-links {
    display: flex;
    align-items: center;
    gap: 15px;
}


.nav-links-box {
    border: 1px solid var(--brand-red);
    border-radius: 12px;
    padding: 8px 24px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-item {
    text-decoration: none;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 12px;
    transition: color 0.2s ease;
}

.nav-item:hover, .nav-item.active {
    color: #C21E56 !important;
}


/* Dropdown */
.dropdown-container { position: relative; }
.nav-item i {
    transition: transform 0.2s ease;
}
.dropdown-container:hover .nav-item i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--footer-bg);
    border: 1px solid rgba(253, 193, 214, 0.3);
    border-radius: 12px;
    padding: 15px;
    min-width: 180px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}
.dropdown-container:hover .dropdown-menu { display: flex; }
.dropdown-item {
    color: var(--nav-text) !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 700;
    text-shadow: none !important;
    transition: none !important;
    position: relative;
    cursor: pointer;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--footer-bg);
    z-index: 9999;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-close-btn {
    color: var(--nav-text);
    font-size: 32px;
    cursor: pointer;
    margin-bottom: 20px;
    align-self: flex-start;
    background: none;
    border: none;
}

.mobile-nav-link {
    color: var(--nav-text) !important;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    margin: 10px 0;
    text-shadow: var(--theme-shadow);
    display: block;
    cursor: pointer;
}

.sub-nav-group {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    margin-top: 5px;
}

.sub-nav-link {
    color: var(--nav-text) !important;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    margin: 6px 0;
    display: block;
    cursor: pointer;
}

.expand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expand-icon {
    border: 1px solid var(--border-color);
    color: var(--nav-text);
    padding: 0px 10px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
}

/* Swiper Overrides */
.swiper-button-next, .swiper-button-prev {
    color: var(--arrow-color) !important;
}
.swiper-pagination-bullet {
    background: var(--theme-text) !important;
    opacity: 0.3;
}
.swiper-pagination-bullet-active {
    background: var(--nav-text) !important;
    opacity: 1;
}

.premium-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #C21E56 0%, #90163f 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 24px rgba(194, 30, 86, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    cursor: pointer;
    z-index: 1;
}

.premium-btn i {
    font-size: 18px;
    color: inherit !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Secondary Premium Button */
.premium-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--theme-text) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.premium-btn-secondary i {
    color: var(--brand-red) !important;
}

/* --- Premium Gate --- */
.premium-gate {
    background: var(--gate-bg);
    color: var(--gate-text);
    border: 1px solid var(--gate-border);
    border-radius: 50px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-blur: 10px;
    transition: all 0.3s ease;
}

.premium-gate h1 {
    color: var(--gate-text) !important;
}

.premium-gate-meta {
    color: var(--gate-text);
}

.item-page-title {
    color: var(--item-title) !important;
    font-weight: 900;
    text-transform: uppercase;
}
.item-meta-text {
    color: var(--theme-text) !important;
    opacity: 0.7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header {
    margin: 60px 0 15px;
    border-bottom: 3px solid var(--border-color);
}

.swiper {
    padding: 7px !important;
}

/* --- Search Overlay --- */
.search-overlay {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    border-bottom: 0px solid var(--theme-pink);
    padding: 0 20px;
}
.search-overlay.active {
    max-height: 100px;
    border-bottom-width: 2px;
}
.search-container {
    max-width: 800px;
    margin: 15px auto;
    width: 100%;
    position: relative;
    display: flex;
    gap: 10px;
}
.search-input {
    flex: 1;
    background: var(--gate-bg);
    border: 2px solid var(--gate-border);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--theme-text);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}
.search-input:focus {
    border-color: var(--nav-text);
}
.search-btn {
    background: var(--nav-text);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
}
.search-close {
    padding: 0 10px;
    background: none;
    border: none;
    color: var(--theme-text);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.search-close:hover {
    opacity: 1;
}

.nav-search-trigger {
    background: var(--nav-text);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.nav-search-trigger:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .search-overlay {
        height: 80px;
    }
    .search-close {
        right: 0;
        top: -40px;
    }
}

.section-title {
    color: var(--theme-text);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 5px;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background: var(--social-bg);
    color: var(--social-text) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: none;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.social-icon-btn:hover {
    opacity: 0.9;
}

.social-icon-wrapper {
    position: relative;
}
.social-icon-wrapper::after {
    content: attr(data-title);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
}
.social-icon-wrapper:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Modals --- */
.cb-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.cb-modal-box {
    background-color: var(--gate-bg) !important;
    color: var(--gate-text) !important;
    width: 100%;
    max-width: 480px;
    padding: 60px 40px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    border: 1px solid var(--gate-border);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalPop {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.cb-modal-icon {
    font-size: 70px;
    color: #ff424d;
    margin-bottom: 30px;
}
.cb-modal-title {
    font-size: 32px;
    font-weight: 950;
    color: var(--gate-text) !important;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}
.cb-modal-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gate-text) !important;
    opacity: 0.8;
    margin-bottom: 40px;
}
.cb-modal-btn {
    background-color: var(--btn-bg) !important;
    color: var(--btn-text) !important;
    font-weight: 900;
    padding: 20px;
    border-radius: 99px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.cb-modal-close {
    background: transparent;
    border: none;
    color: var(--gate-text) !important;
    opacity: 0.4;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.2em;
    cursor: pointer;
    margin-top: 20px;
    transition: none;
}

/* --- Pagination --- */
.premium-pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.premium-pagination-wrapper nav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.premium-pagination-wrapper ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.premium-pagination-wrapper li {
    margin: 4px;
    list-style: none !important;
}
.premium-pagination-wrapper li a, 
.premium-pagination-wrapper li span {
    border: none !important;
    border-radius: 12px !important;
    background: var(--gate-bg) !important;
    color: var(--theme-text) !important;
    font-weight: 800 !important;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none !important;
}
.premium-pagination-wrapper li.active span {
    background: var(--theme-pink) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(253, 193, 214, 0.4);
}
.premium-pagination-wrapper li a:hover {
    opacity: 0.8;
}
/* Hover effect removed */

.card-link img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    border: 4px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 12px;
}
.nav-item-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-item-logo:hover {
    transform: scale(1.05);
}
.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--card-title);
    text-align: center;
    line-height: 1.4;
    padding: 0 5px;
}
.card-patreon-tag {
    color: #ff3366 !important;
    font-size: 0.85em;
    font-weight: 800;
    margin-right: 4px;
}


/* --- Hero & Intro --- */
.hero-banner-wrapper {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.intro-section {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--gate-bg);
}

.intro-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: var(--theme-text);
}

.my-socials-box {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    background: #000;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
}

.category-title {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.65);
    padding: 15px 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.view-more-link {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--theme-text);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.view-more-link:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

/* --- Footer --- */
.footer {
    padding: 60px 0;
    background: var(--footer-bg);
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    transition: background 0.3s ease;
}
.footer-credits {
    color: var(--footer-text);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.signature-link {
    color: var(--nav-text) !important;
    text-decoration: none !important;
    font-weight: 700;
    transition: opacity 0.2s ease;
}
.signature-link:hover { opacity: 0.8; }
