/* ============================================
   蜜桃社 (Peach Club) - 主样式表
   设计风格: 甜美日系/少女风
   CSS前缀: pc-
   ============================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --pc-primary: #FFC0CB;
    --pc-secondary: #FFFFFF;
    --pc-accent: #FF69B4;
    --pc-text: #616161;
    --pc-link: #F08080;
    --pc-bg-soft: #FFF0F5;
    --pc-bg-card: rgba(255, 255, 255, 0.85);
    --pc-shadow: 0 4px 16px rgba(255, 105, 180, 0.12);
    --pc-shadow-hover: 0 8px 28px rgba(255, 105, 180, 0.22);
    --pc-radius: 16px;
    --pc-radius-sm: 10px;
    --pc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--pc-text);
    background-color: var(--pc-bg-soft);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--pc-link);
    text-decoration: none;
    transition: var(--pc-transition);
}

a:hover {
    color: var(--pc-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--pc-accent);
    line-height: 1.4;
}

/* ---- Jammer Block (Hidden) ---- */
.jammer-block {
    display: none !important;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---- Loading Animation ---- */
#pc-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pc-loader.pc-loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.pc-peach-bounce {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 35%, #FFB6C1, #FF69B4);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: pc-bounce 1.2s ease-in-out infinite;
    position: relative;
}

.pc-peach-bounce::before {
    content: '🍑';
    font-size: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pc-loader-text {
    margin-top: 16px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--pc-accent);
    font-size: 14px;
    letter-spacing: 2px;
}

@keyframes pc-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* ---- Container ---- */
.pc-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .pc-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .pc-container {
        padding: 0 60px;
    }
}

/* ============================================
   Header & Navigation
   ============================================ */
#pc-header {
    background: var(--pc-secondary);
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(255, 192, 203, 0.2);
    position: relative;
    z-index: 100;
}

.pc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-logo img {
    height: 40px;
    width: auto;
}

.pc-logo-text {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--pc-accent);
    letter-spacing: 1px;
}

/* Desktop Nav */
.pc-nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .pc-nav-desktop {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.pc-nav-desktop a {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pc-primary);
    padding: 8px 14px;
    border-radius: var(--pc-radius-sm);
    position: relative;
    transition: var(--pc-transition);
}

.pc-nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--pc-accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.pc-nav-desktop a:hover {
    color: var(--pc-link);
}

.pc-nav-desktop a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.pc-nav-desktop a.pc-nav-active {
    color: var(--pc-accent);
}

.pc-nav-desktop a.pc-nav-active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Hamburger */
.pc-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--pc-radius-sm);
    transition: var(--pc-transition);
}

@media (min-width: 1024px) {
    .pc-hamburger {
        display: none;
    }
}

.pc-hamburger:hover {
    background: var(--pc-bg-soft);
}

.pc-hamburger-icon {
    font-size: 24px;
    line-height: 1;
}

/* Mobile Side Menu */
.pc-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--pc-transition);
}

.pc-nav-overlay.pc-nav-open {
    opacity: 1;
    visibility: visible;
}

.pc-nav-mobile {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFFFFF 100%);
    z-index: 201;
    padding: 30px 24px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(255, 105, 180, 0.15);
}

.pc-nav-mobile.pc-nav-open {
    right: 0;
}

.pc-nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.pc-nav-close button {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--pc-accent);
    cursor: pointer;
    padding: 4px;
}

.pc-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pc-nav-mobile-links a {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--pc-text);
    padding: 14px 16px;
    border-radius: var(--pc-radius-sm);
    transition: var(--pc-transition);
}

.pc-nav-mobile-links a:hover,
.pc-nav-mobile-links a.pc-nav-active {
    background: rgba(255, 192, 203, 0.3);
    color: var(--pc-accent);
}

/* ============================================
   Hero Banner - 今日推荐
   ============================================ */
#pc-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 50%, #FFB6C1 100%);
}

@media (min-width: 768px) {
    #pc-hero {
        min-height: 520px;
    }
}

@media (min-width: 1024px) {
    #pc-hero {
        min-height: 600px;
    }
}

.pc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.pc-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .pc-hero-content {
        min-height: 520px;
        padding: 80px 40px;
    }
}

@media (min-width: 1024px) {
    .pc-hero-content {
        min-height: 600px;
    }
}

.pc-hero-slogan {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(255, 105, 180, 0.4);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .pc-hero-slogan {
        font-size: 2.6rem;
    }
}

.pc-hero-sub {
    font-size: 1rem;
    color: #FFFFFF;
    text-shadow: 0 1px 6px rgba(255, 105, 180, 0.3);
    max-width: 600px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .pc-hero-sub {
        font-size: 1.15rem;
    }
}

.pc-hero-btn {
    display: inline-block;
    background: var(--pc-accent);
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.35);
    transition: var(--pc-transition);
}

.pc-hero-btn:hover {
    background: var(--pc-link);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 105, 180, 0.45);
}

/* ============================================
   Section Common Styles
   ============================================ */
.pc-section {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .pc-section {
        padding: 70px 0;
    }
}

.pc-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.pc-section-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--pc-accent);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

@media (min-width: 768px) {
    .pc-section-title {
        font-size: 2rem;
    }
}

.pc-section-title::after {
    content: '♡';
    display: block;
    text-align: center;
    font-size: 0.8em;
    margin-top: 4px;
    color: var(--pc-primary);
}

.pc-section-desc {
    font-size: 0.95rem;
    color: var(--pc-text);
    max-width: 600px;
    margin: 0 auto;
}

.pc-section-alt {
    background: var(--pc-secondary);
}

/* ============================================
   Card Grid
   ============================================ */
.pc-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 360px) {
    .pc-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .pc-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .pc-card-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

/* ---- Video Card ---- */
.pc-card {
    background: var(--pc-bg-card);
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-shadow);
    transition: var(--pc-transition);
    cursor: pointer;
}

.pc-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--pc-shadow-hover);
}

.pc-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.pc-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pc-card:hover .pc-card-thumb img {
    transform: scale(1.08);
}

.pc-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pc-accent);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.pc-card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.pc-card-body {
    padding: 14px 16px;
}

.pc-card-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pc-text);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-card-meta {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   Popular Stars - 人气之星
   ============================================ */
.pc-stars-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.pc-stars-scroll::-webkit-scrollbar {
    height: 6px;
}

.pc-stars-scroll::-webkit-scrollbar-track {
    background: var(--pc-bg-soft);
    border-radius: 3px;
}

.pc-stars-scroll::-webkit-scrollbar-thumb {
    background: var(--pc-primary);
    border-radius: 3px;
}

.pc-star-item {
    flex: 0 0 auto;
    text-align: center;
    scroll-snap-align: start;
    transition: var(--pc-transition);
}

.pc-star-item:hover {
    transform: translateY(-4px);
}

.pc-star-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pc-primary);
    box-shadow: 0 4px 12px rgba(255, 192, 203, 0.3);
    transition: var(--pc-transition);
}

@media (min-width: 768px) {
    .pc-star-avatar {
        width: 110px;
        height: 110px;
    }
}

.pc-star-item:hover .pc-star-avatar {
    border-color: var(--pc-accent);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.35);
}

.pc-star-name {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pc-text);
    margin-top: 10px;
}

.pc-star-votes {
    font-size: 0.75rem;
    color: var(--pc-link);
    margin-top: 4px;
}

/* ============================================
   Series Collections - 系列合集
   ============================================ */
.pc-series-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 360px) {
    .pc-series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .pc-series-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.pc-series-card {
    background: var(--pc-secondary);
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-shadow);
    transition: var(--pc-transition);
    position: relative;
}

.pc-series-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: var(--pc-shadow-hover);
}

.pc-series-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 6px;
    background: var(--pc-primary);
    border-radius: 3px 3px 0 0;
}

.pc-series-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.pc-series-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-series-info {
    padding: 14px 16px;
    text-align: center;
}

.pc-series-name {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pc-accent);
}

.pc-series-count {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

/* ============================================
   VIP Section - 加入会员
   ============================================ */
#pc-vip {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 50%, #FFB6C1 100%);
    position: relative;
    overflow: hidden;
}

.pc-vip-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pc-vip-title {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.pc-vip-title::after {
    color: rgba(255, 255, 255, 0.6);
}

.pc-vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 30px auto;
}

@media (min-width: 768px) {
    .pc-vip-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-vip-feature {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border-radius: var(--pc-radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--pc-transition);
}

.pc-vip-feature:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.pc-vip-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pc-vip-label {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.pc-vip-btn {
    display: inline-block;
    background: #FFFFFF;
    color: var(--pc-accent);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    transition: var(--pc-transition);
}

.pc-vip-btn:hover {
    background: var(--pc-accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 105, 180, 0.4);
}

/* ============================================
   Upload Section - 内容上传
   ============================================ */
#pc-upload {
    position: relative;
}

.pc-upload-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .pc-upload-inner {
        flex-direction: row;
        gap: 50px;
    }
}

.pc-upload-illustration {
    flex: 0 0 auto;
    max-width: 300px;
}

@media (min-width: 768px) {
    .pc-upload-illustration {
        max-width: 400px;
    }
}

.pc-upload-illustration img {
    border-radius: var(--pc-radius);
}

.pc-upload-text {
    text-align: center;
}

@media (min-width: 768px) {
    .pc-upload-text {
        text-align: left;
    }
}

.pc-upload-text h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.pc-upload-text p {
    margin-bottom: 20px;
}

/* ============================================
   Merch Store - 周边商城
   ============================================ */
.pc-merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .pc-merch-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.pc-merch-card {
    background: var(--pc-secondary);
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-shadow);
    transition: var(--pc-transition);
    text-align: center;
}

.pc-merch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pc-shadow-hover);
}

.pc-merch-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.pc-merch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-merch-info {
    padding: 14px;
}

.pc-merch-name {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pc-text);
    margin-bottom: 6px;
}

.pc-merch-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pc-accent);
}

/* ============================================
   Contact Support - 联系客服
   ============================================ */
.pc-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pc-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pc-contact-card {
    background: var(--pc-secondary);
    border-radius: var(--pc-radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--pc-shadow);
    transition: var(--pc-transition);
}

.pc-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow-hover);
}

.pc-contact-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.pc-contact-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.pc-contact-card p {
    font-size: 0.88rem;
    color: #999;
}

/* ============================================
   Actress List Section
   ============================================ */
.pc-actress-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .pc-actress-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.pc-actress-card {
    background: var(--pc-secondary);
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-shadow);
    text-align: center;
    padding: 24px 16px;
    transition: var(--pc-transition);
}

.pc-actress-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pc-shadow-hover);
}

.pc-actress-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid var(--pc-primary);
}

.pc-actress-card h3 {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.pc-actress-tag {
    display: inline-block;
    background: var(--pc-bg-soft);
    color: var(--pc-accent);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 2px;
}

/* ============================================
   Footer
   ============================================ */
#pc-footer {
    background: #FFFFFF;
    border-top: 2px solid var(--pc-primary);
    padding: 50px 0 0;
}

.pc-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .pc-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-footer-col h4 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pc-accent);
    margin-bottom: 16px;
}

.pc-footer-col ul {
    list-style: none;
}

.pc-footer-col ul li {
    margin-bottom: 10px;
}

.pc-footer-col ul li a {
    font-size: 0.88rem;
    color: var(--pc-text);
    transition: var(--pc-transition);
}

.pc-footer-col ul li a:hover {
    color: var(--pc-accent);
    padding-left: 4px;
}

.pc-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.pc-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pc-bg-soft);
    transition: var(--pc-transition);
}

.pc-social-icons a:hover {
    background: var(--pc-primary);
    transform: translateY(-2px);
}

.pc-social-icons img {
    width: 20px;
    height: 20px;
}

.pc-footer-bottom {
    border-top: 1px solid rgba(255, 192, 203, 0.3);
    padding: 20px 0;
    text-align: center;
}

.pc-footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pc-footer-badges img {
    height: 30px;
    width: auto;
}

.pc-footer-disclaimer {
    font-size: 0.78rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

.pc-footer-copyright {
    font-size: 0.78rem;
    color: #BBB;
}

/* ============================================
   Category / List Page
   ============================================ */
.pc-page-banner {
    position: relative;
    width: 100%;
    min-height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE4E1, #FFC0CB);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .pc-page-banner {
        min-height: 260px;
    }
}

.pc-page-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.pc-page-banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.pc-page-banner-text h1 {
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(255, 105, 180, 0.4);
}

@media (min-width: 768px) {
    .pc-page-banner-text h1 {
        font-size: 2.4rem;
    }
}

.pc-page-banner-text p {
    font-size: 0.95rem;
    margin-top: 8px;
    text-shadow: 0 1px 6px rgba(255, 105, 180, 0.3);
}

/* ---- Breadcrumb ---- */
.pc-breadcrumb {
    padding: 16px 0;
    font-size: 0.85rem;
    color: #999;
}

.pc-breadcrumb a {
    color: var(--pc-link);
}

.pc-breadcrumb span {
    margin: 0 6px;
    color: #CCC;
}

/* ---- Pagination ---- */
.pc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.pc-pagination a,
.pc-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--pc-radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--pc-transition);
}

.pc-pagination a {
    background: var(--pc-secondary);
    color: var(--pc-text);
    box-shadow: var(--pc-shadow);
}

.pc-pagination a:hover {
    background: var(--pc-primary);
    color: #FFFFFF;
}

.pc-pagination .pc-page-active {
    background: var(--pc-accent);
    color: #FFFFFF;
}

/* ============================================
   Video Detail Page
   ============================================ */
.pc-video-detail {
    padding: 30px 0 60px;
}

.pc-video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--pc-radius);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-video-info {
    margin-bottom: 30px;
}

.pc-video-info h1 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .pc-video-info h1 {
        font-size: 1.8rem;
    }
}

.pc-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 16px;
}

.pc-video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pc-video-tags a {
    display: inline-block;
    background: var(--pc-bg-soft);
    color: var(--pc-accent);
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 20px;
    transition: var(--pc-transition);
}

.pc-video-tags a:hover {
    background: var(--pc-accent);
    color: #FFFFFF;
}

.pc-video-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--pc-text);
}

.pc-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .pc-screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .pc-screenshots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-screenshots-grid img {
    width: 100%;
    border-radius: var(--pc-radius-sm);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: var(--pc-transition);
    cursor: pointer;
}

.pc-screenshots-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--pc-shadow-hover);
}

/* ============================================
   Actress Detail Page
   ============================================ */
.pc-actress-detail {
    padding: 30px 0 60px;
}

.pc-actress-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .pc-actress-profile {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

.pc-actress-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pc-primary);
    box-shadow: 0 6px 24px rgba(255, 192, 203, 0.3);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .pc-actress-photo {
        width: 200px;
        height: 200px;
    }
}

.pc-actress-bio h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .pc-actress-bio h1 {
        text-align: left;
    }
}

.pc-actress-bio p {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.pc-actress-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.pc-actress-stat {
    background: var(--pc-bg-soft);
    padding: 8px 16px;
    border-radius: var(--pc-radius-sm);
    font-size: 0.85rem;
}

.pc-actress-stat strong {
    color: var(--pc-accent);
}

.pc-photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .pc-photo-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.pc-photo-gallery img {
    width: 100%;
    border-radius: var(--pc-radius-sm);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: var(--pc-transition);
}

.pc-photo-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--pc-shadow-hover);
}

/* ============================================
   APP Download Page
   ============================================ */
.pc-app-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFE4E1 50%, #FFC0CB 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.pc-app-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.pc-floating-heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: pc-float 6s ease-in-out infinite;
}

@keyframes pc-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(10deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-40px) rotate(8deg); }
}

.pc-app-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pc-app-content h1 {
    font-size: 1.8rem;
    color: var(--pc-accent);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .pc-app-content h1 {
        font-size: 2.4rem;
    }
}

.pc-app-content .pc-app-subtitle {
    font-size: 1rem;
    color: var(--pc-text);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pc-app-phone {
    max-width: 280px;
    margin: 0 auto 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.25);
    overflow: hidden;
}

@media (min-width: 768px) {
    .pc-app-phone {
        max-width: 340px;
    }
}

.pc-app-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .pc-app-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.pc-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pc-accent);
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.3);
    transition: var(--pc-transition);
}

.pc-app-btn:hover {
    background: var(--pc-link);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 105, 180, 0.4);
}

/* ============================================
   Common Button
   ============================================ */
.pc-btn {
    display: inline-block;
    background: var(--pc-accent);
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.25);
    transition: var(--pc-transition);
}

.pc-btn:hover {
    background: var(--pc-link);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.35);
}

.pc-btn-outline {
    background: transparent;
    color: var(--pc-accent);
    border: 2px solid var(--pc-accent);
    box-shadow: none;
}

.pc-btn-outline:hover {
    background: var(--pc-accent);
    color: #FFFFFF;
}

/* ============================================
   Utility Classes
   ============================================ */
.pc-text-center { text-align: center; }
.pc-mt-20 { margin-top: 20px; }
.pc-mt-30 { margin-top: 30px; }
.pc-mb-20 { margin-bottom: 20px; }
.pc-mb-30 { margin-bottom: 30px; }
