/* ========================================
   蜜桃视频 - 桃粉渐变梦幻风主题样式
   CSS前缀: mt2-
   ======================================== */

/* Google Fonts 本地化 - 使用系统字体回退 */
@font-face {
    font-family: 'Pacifico';
    src: local('Pacifico');
    font-display: swap;
}
@font-face {
    font-family: 'Quicksand';
    src: local('Quicksand');
    font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
    --mt2-primary: #FFC0CB;
    --mt2-primary-dark: #FFB6C1;
    --mt2-white: #FFFFFF;
    --mt2-text: #5A4F4F;
    --mt2-link: #FF69B4;
    --mt2-gradient: linear-gradient(135deg, #FFC0CB, #FFB6C1);
    --mt2-gradient-v: linear-gradient(180deg, #FFC0CB, #FFB6C1);
    --mt2-glass: rgba(255, 192, 203, 0.15);
    --mt2-glass-border: rgba(255, 192, 203, 0.3);
    --mt2-shadow: 0 8px 32px rgba(255, 105, 180, 0.15);
    --mt2-radius: 16px;
    --mt2-radius-sm: 8px;
    --mt2-radius-pill: 50px;
    --mt2-font-title: 'Pacifico', 'PingFang SC', 'Microsoft YaHei', cursive;
    --mt2-font-body: 'Quicksand', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ---- 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: var(--mt2-font-body);
    color: var(--mt2-text);
    background: var(--mt2-white);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--mt2-link);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover { opacity: 0.8; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--mt2-font-title);
    color: var(--mt2-text);
    line-height: 1.3;
}

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

.mt2-section {
    padding: 60px 0;
    position: relative;
}

.mt2-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--mt2-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt2-section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #8a7e7e;
    font-size: 0.95rem;
}

/* ---- Navigation ---- */
#mt2-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mt2-glass-border);
    box-shadow: 0 2px 20px rgba(255, 192, 203, 0.2);
}

.mt2-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mt2-font-title);
    font-size: 1.5rem;
    color: var(--mt2-link);
}

.mt2-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.mt2-nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.mt2-nav-links li a {
    display: block;
    padding: 8px 16px;
    color: var(--mt2-text);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--mt2-radius-pill);
    transition: all 0.3s ease;
    position: relative;
}

.mt2-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--mt2-link);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.mt2-nav-links li a:hover::after,
.mt2-nav-links li a.mt2-active::after {
    width: 60%;
}

.mt2-nav-links li a:hover {
    color: var(--mt2-link);
    opacity: 1;
}

/* Hamburger Menu */
.mt2-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.mt2-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--mt2-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mt2-hamburger.mt2-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mt2-hamburger.mt2-open span:nth-child(2) {
    opacity: 0;
}
.mt2-hamburger.mt2-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mt2-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #FFC0CB, #FFB6C1, #FF69B4);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 30px 30px;
    box-shadow: -10px 0 40px rgba(255, 105, 180, 0.3);
}

.mt2-mobile-menu.mt2-open {
    right: 0;
}

.mt2-mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--mt2-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mt2-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mt2-mobile-overlay.mt2-open {
    opacity: 1;
    visibility: visible;
}

/* ---- Hero Banner ---- */
#mt2-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--mt2-gradient);
}

.mt2-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mt2-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

.mt2-hero-slide.mt2-active {
    opacity: 1;
}

.mt2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 192, 203, 0.4) 0%, rgba(255, 105, 180, 0.3) 100%);
    z-index: 1;
}

.mt2-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.mt2-hero-content h1 {
    font-size: 3rem;
    color: var(--mt2-white);
    text-shadow: 0 2px 20px rgba(255, 105, 180, 0.5);
    margin-bottom: 20px;
    -webkit-text-fill-color: white;
}

.mt2-hero-slogan {
    font-size: 1.3rem;
    color: var(--mt2-white);
    margin-bottom: 30px;
    opacity: 0;
    animation: mt2FadeInUp 1.5s ease 0.5s forwards;
}

.mt2-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

@keyframes mt2FadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Buttons ---- */
.mt2-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--mt2-radius-pill);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.mt2-btn-primary {
    background: var(--mt2-gradient);
    color: var(--mt2-white);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

.mt2-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5);
    color: var(--mt2-white);
}

.mt2-btn-outline {
    background: transparent;
    color: var(--mt2-link);
    border: 2px solid var(--mt2-link);
}

.mt2-btn-outline:hover {
    background: var(--mt2-link);
    color: var(--mt2-white);
}

.mt2-btn-white {
    background: var(--mt2-white);
    color: var(--mt2-link);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.mt2-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    color: var(--mt2-link);
}

/* ---- Glass Card ---- */
.mt2-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--mt2-shadow);
}

.mt2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 105, 180, 0.25);
}

.mt2-card:hover .mt2-card-shine {
    opacity: 1;
    transform: translateX(100%);
}

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

.mt2-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mt2-card:hover .mt2-card-img img {
    transform: scale(1.05);
}

.mt2-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.mt2-card-body {
    padding: 20px;
}

.mt2-card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--mt2-font-body);
    font-weight: 700;
}

.mt2-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #b3a5a5;
    margin-bottom: 10px;
}

.mt2-card-desc {
    font-size: 0.9rem;
    color: #8a7e7e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Video Duration Badge ---- */
.mt2-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---- Play Icon Overlay ---- */
.mt2-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 105, 180, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mt2-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}

.mt2-card:hover .mt2-play-icon {
    opacity: 1;
}

/* ---- Grid Layouts ---- */
.mt2-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mt2-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mt2-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ---- Studios Section ---- */
.mt2-studio-card {
    position: relative;
    border-radius: var(--mt2-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.mt2-studio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt2-studio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(255, 105, 180, 0.7) 100%);
}

.mt2-studio-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.3);
}

.mt2-studio-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ---- Topics Horizontal Scroll ---- */
.mt2-topics-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.mt2-topics-scroll::-webkit-scrollbar {
    height: 6px;
}

.mt2-topics-scroll::-webkit-scrollbar-track {
    background: rgba(255, 192, 203, 0.2);
    border-radius: 3px;
}

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

.mt2-topic-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border-radius: var(--mt2-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mt2-topic-card:hover {
    transform: scale(1.03);
}

.mt2-topic-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mt2-topic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: white;
}

.mt2-topic-info h3 {
    font-size: 1rem;
    color: white;
    -webkit-text-fill-color: white;
}

.mt2-topic-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ---- Waterfall / Masonry ---- */
.mt2-waterfall {
    columns: 4;
    column-gap: 20px;
}

.mt2-waterfall .mt2-card {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* ---- Goddess Ranking ---- */
.mt2-goddess-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.mt2-goddess-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius);
    transition: all 0.3s ease;
}

.mt2-goddess-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--mt2-shadow);
}

.mt2-goddess-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--mt2-primary);
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.4);
}

.mt2-goddess-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt2-goddess-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.mt2-goddess-heat {
    color: var(--mt2-link);
    font-size: 0.85rem;
    font-weight: 600;
}

.mt2-rank-badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background: var(--mt2-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ---- Community Section ---- */
.mt2-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mt2-community-post {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius);
    padding: 20px;
    transition: all 0.3s ease;
}

.mt2-community-post:hover {
    transform: translateY(-3px);
    box-shadow: var(--mt2-shadow);
}

.mt2-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mt2-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.mt2-post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt2-post-user {
    font-weight: 700;
    font-size: 0.9rem;
}

.mt2-post-time {
    font-size: 0.75rem;
    color: #b3a5a5;
}

.mt2-post-content {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mt2-post-actions {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #b3a5a5;
}

.mt2-post-actions span {
    cursor: pointer;
    transition: color 0.3s;
}

.mt2-post-actions span:hover {
    color: var(--mt2-link);
}

/* ---- Membership CTA ---- */
#mt2-membership-cta {
    background: var(--mt2-gradient);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

#mt2-membership-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: mt2Pulse 4s ease-in-out infinite;
}

@keyframes mt2Pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

#mt2-membership-cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    -webkit-text-fill-color: white;
}

#mt2-membership-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

/* ---- APP Download Section ---- */
#mt2-app-download {
    background: linear-gradient(135deg, #fff5f7, #ffe0e6);
    text-align: center;
    padding: 80px 20px;
}

.mt2-app-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mt2-app-phone {
    width: 250px;
    flex-shrink: 0;
}

.mt2-app-phone img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.mt2-app-info {
    text-align: left;
}

.mt2-app-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mt2-app-info p {
    margin-bottom: 25px;
    color: #8a7e7e;
}

.mt2-app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---- Brands Section ---- */
.mt2-brands-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mt2-brand-item {
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 15px;
    font-weight: 600;
    color: #b3a5a5;
    font-size: 0.85rem;
}

.mt2-brand-item:hover {
    box-shadow: var(--mt2-shadow);
    transform: translateY(-3px);
}

/* ---- Creator Section ---- */
#mt2-creator {
    background: linear-gradient(135deg, #fff0f3, #ffe8ec);
}

.mt2-creator-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mt2-creator-img {
    flex: 1;
    border-radius: var(--mt2-radius);
    overflow: hidden;
}

.mt2-creator-img img {
    width: 100%;
    border-radius: var(--mt2-radius);
}

.mt2-creator-info {
    flex: 1;
}

.mt2-creator-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mt2-creator-info p {
    margin-bottom: 20px;
    color: #8a7e7e;
}

.mt2-creator-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.mt2-stat-item {
    text-align: center;
}

.mt2-stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mt2-link);
}

.mt2-stat-label {
    font-size: 0.8rem;
    color: #b3a5a5;
}

/* ---- Footer ---- */
#mt2-footer {
    background: linear-gradient(180deg, #2d2028, #1a1215);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.mt2-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.mt2-footer-col h3 {
    color: var(--mt2-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    -webkit-text-fill-color: #FFC0CB;
}

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

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

.mt2-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.mt2-footer-col ul li a:hover {
    color: var(--mt2-primary);
    opacity: 1;
}

.mt2-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.mt2-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 192, 203, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mt2-primary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mt2-footer-social a:hover {
    background: var(--mt2-primary);
    color: white;
    opacity: 1;
}

.mt2-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.8rem;
}

.mt2-footer-bottom p {
    margin-bottom: 8px;
}

.mt2-footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.mt2-footer-bottom a:hover {
    color: var(--mt2-primary);
}

.mt2-award-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.2), rgba(255, 182, 193, 0.2));
    border: 1px solid rgba(255, 192, 203, 0.3);
    border-radius: var(--mt2-radius-pill);
    font-size: 0.75rem;
    color: var(--mt2-primary);
    margin-bottom: 15px;
}

/* ---- Page Banner (Inner Pages) ---- */
.mt2-page-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.mt2-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 192, 203, 0.5), rgba(255, 105, 180, 0.4));
}

.mt2-page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.mt2-page-banner-content h1 {
    font-size: 2.5rem;
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 10px;
}

.mt2-page-banner-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ---- Membership Page ---- */
.mt2-membership-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mt2-tier-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mt2-tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.mt2-tier-card.mt2-tier-featured {
    border-color: var(--mt2-link);
    transform: scale(1.05);
}

.mt2-tier-card.mt2-tier-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.mt2-tier-badge {
    display: inline-block;
    padding: 5px 20px;
    border-radius: var(--mt2-radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mt2-tier-pink .mt2-tier-badge {
    background: linear-gradient(135deg, #FFC0CB, #FFB6C1);
    color: white;
}

.mt2-tier-gold .mt2-tier-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.mt2-tier-supreme .mt2-tier-badge {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
}

.mt2-tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mt2-text);
    margin-bottom: 5px;
}

.mt2-tier-price span {
    font-size: 1rem;
    color: #b3a5a5;
}

.mt2-tier-period {
    font-size: 0.85rem;
    color: #b3a5a5;
    margin-bottom: 25px;
}

.mt2-tier-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.mt2-tier-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 192, 203, 0.2);
    font-size: 0.9rem;
    padding-left: 25px;
    position: relative;
}

.mt2-tier-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--mt2-link);
    font-weight: 700;
}

/* ---- Payment Modal ---- */
.mt2-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.mt2-modal-overlay.mt2-show {
    display: flex;
}

.mt2-modal {
    background: white;
    border-radius: var(--mt2-radius);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mt2-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #b3a5a5;
    background: none;
    border: none;
}

.mt2-modal h3 {
    margin-bottom: 20px;
    text-align: center;
}

.mt2-payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.mt2-payment-option {
    padding: 15px;
    border: 2px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9rem;
}

.mt2-payment-option:hover,
.mt2-payment-option.mt2-selected {
    border-color: var(--mt2-link);
    background: rgba(255, 105, 180, 0.05);
}

/* ---- Jammer Block (Hidden) ---- */
.peach-jammer-block {
    display: none !important;
}

/* ---- Responsive Design ---- */
/* 1440px */
@media (max-width: 1440px) {
    .mt2-container { max-width: 1200px; }
}

/* 1024px */
@media (max-width: 1024px) {
    .mt2-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .mt2-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .mt2-goddess-list { grid-template-columns: repeat(3, 1fr); }
    .mt2-waterfall { columns: 3; }
    .mt2-membership-tiers { grid-template-columns: repeat(3, 1fr); }
    .mt2-tier-card.mt2-tier-featured { transform: scale(1); }
    .mt2-creator-inner { flex-direction: column; }
    .mt2-app-inner { flex-direction: column; }
    .mt2-app-info { text-align: center; }
    .mt2-app-buttons { justify-content: center; }
}

/* 768px */
@media (max-width: 768px) {
    .mt2-nav-links { display: none; }
    .mt2-hamburger { display: flex; }
    
    .mt2-hero-content h1 { font-size: 2rem; }
    .mt2-hero-slogan { font-size: 1rem; }
    
    .mt2-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .mt2-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .mt2-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .mt2-goddess-list { grid-template-columns: repeat(2, 1fr); }
    .mt2-waterfall { columns: 2; }
    .mt2-community-grid { grid-template-columns: repeat(2, 1fr); }
    .mt2-membership-tiers { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .mt2-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .mt2-footer-social { justify-content: center; }
    
    .mt2-section { padding: 40px 0; }
    .mt2-section-title { font-size: 1.6rem; }
    
    .mt2-page-banner { height: 220px; }
    .mt2-page-banner-content h1 { font-size: 1.8rem; }
}

/* 360px */
@media (max-width: 480px) {
    html { font-size: 14px; }
    
    .mt2-grid-3 { grid-template-columns: 1fr; }
    .mt2-grid-4 { grid-template-columns: 1fr; }
    .mt2-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .mt2-goddess-list { grid-template-columns: repeat(2, 1fr); }
    .mt2-waterfall { columns: 1; }
    .mt2-community-grid { grid-template-columns: 1fr; }
    
    .mt2-hero-content h1 { font-size: 1.6rem; }
    
    .mt2-nav-inner { height: 60px; }
    .mt2-logo { font-size: 1.2rem; }
    .mt2-logo img { width: 32px; height: 32px; }
    
    .mt2-app-phone { width: 180px; }
    .mt2-app-buttons { flex-direction: column; align-items: center; }
    
    .mt2-creator-stats { flex-wrap: wrap; gap: 15px; }
    
    .mt2-topic-card { flex: 0 0 260px; }
    
    .mt2-brands-grid { gap: 15px; }
    .mt2-brand-item { width: 120px; height: 60px; font-size: 0.75rem; }
}

/* ---- Animations ---- */
.mt2-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.mt2-fade-in.mt2-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Video Page Specific ---- */
.mt2-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--mt2-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

.mt2-video-info h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.mt2-video-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.mt2-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 192, 203, 0.2);
    color: var(--mt2-link);
    border-radius: var(--mt2-radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
}

.mt2-video-screenshots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.mt2-video-screenshots img {
    width: 100%;
    border-radius: var(--mt2-radius-sm);
    cursor: pointer;
    transition: transform 0.3s;
}

.mt2-video-screenshots img:hover {
    transform: scale(1.05);
}

/* ---- Navigation Page ---- */
.mt2-nav-category {
    margin-bottom: 40px;
}

.mt2-nav-category h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mt2-primary);
    display: inline-block;
}

.mt2-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mt2-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--mt2-glass-border);
    border-radius: var(--mt2-radius-sm);
    transition: all 0.3s;
}

.mt2-link-item:hover {
    box-shadow: var(--mt2-shadow);
    transform: translateY(-2px);
}

.mt2-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mt2-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.mt2-link-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--mt2-text);
}

@media (max-width: 768px) {
    .mt2-link-grid { grid-template-columns: repeat(2, 1fr); }
    .mt2-video-screenshots { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .mt2-link-grid { grid-template-columns: 1fr; }
    .mt2-video-screenshots { grid-template-columns: repeat(2, 1fr); }
}
