:root {
    /* Ночная тема (Dark Pink Premium) */
    --bg-color: #0b0206;
    --bg-surface: rgba(35, 10, 20, 0.5);
    --text-main: #ffffff;
    --text-muted: #d5abbc;
    --accent-1: #f1256e;
    --accent-2: #ff7657;
    --glass-bg: rgba(241, 37, 110, 0.03);
    --glass-border: rgba(241, 37, 110, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    --gradient-text: linear-gradient(to right, #fff, #f1256e, #ff7657, #fff);
}

[data-theme="light"] {
    /* Светлая тема (Light Rose Premium) */
    --bg-color: #fcf1f5;
    --bg-surface: rgba(255, 255, 255, 0.7);
    --text-main: #2b0614;
    --text-muted: #754f5f;
    --accent-1: #d81b60;
    --accent-2: #ff5277;
    --glass-bg: rgba(216, 27, 96, 0.03);
    --glass-border: rgba(216, 27, 96, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(216, 27, 96, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    --gradient-text: linear-gradient(to right, #2b0614, var(--accent-1), var(--accent-2), #2b0614);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s ease;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Premium Header Fonts */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 25s infinite ease-in-out alternate;
}

.orb-1 { width: 500px; height: 500px; background: var(--accent-1); top: -10%; left: -10%; }
.orb-2 { width: 600px; height: 600px; background: var(--accent-2); bottom: -20%; right: -10%; animation-delay: -5s; opacity: 0.2; }
.orb-3 { width: 400px; height: 400px; background: #9600ff; top: 40%; left: 40%; animation-delay: -10s; opacity: 0.15; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 80px) scale(1.1); }
}

/* Floating Hearts & Dollars */
.floating-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: floatUp infinite linear;
}
.floating-item i {
    font-size: var(--size);
    position: relative;
}
.floating-item span {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--bg-color); /* Cutout effect - matched to background */
    text-shadow: none;
    font-size: calc(var(--size) * 0.45);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: var(--max-opacity);
    }
    90% {
        opacity: var(--max-opacity);
    }
    100% {
        transform: translateY(-20vh) rotate(var(--rot)) scale(1.2);
        opacity: 0;
    }
}

/* Typography & Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s infinite linear;
    padding-bottom: 5px;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    box-shadow: var(--glass-shadow);
}
.badge i {
    color: var(--accent-1);
}

/* Header */
header {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(11, 2, 6, 0.4);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

[data-theme="light"] header {
    background: rgba(252, 241, 245, 0.6);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--accent-1);
    font-family: inherit;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a.nav-item {
    text-decoration: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links a.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%; height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a.nav-item:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    color: #fff !important;
    background: var(--gradient-primary);
    box-shadow: 0 10px 25px -5px rgba(241, 37, 110, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(255, 118, 87, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--accent-1);
}

#theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

#theme-toggle:hover {
    background: var(--bg-surface);
    transform: rotate(30deg);
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.platforms-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.platforms-bar:hover {
    opacity: 1;
}

.platform-item {
    font-size: 45px;
    color: var(--text-muted);
    transition: all 0.4s ease;
    cursor: default;
    filter: grayscale(100%);
    opacity: 0.8;
}

.platform-item.text-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
}

.platform-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
}

.platform-item.instagram:hover { color: #E1306C; text-shadow: 0 0 15px rgba(225, 48, 108, 0.4); }
.platform-item.x-twitter:hover { color: #ffffff; text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
.platform-item.of-logo:hover { color: #00AFF0; text-shadow: 0 0 15px rgba(0, 175, 240, 0.4); }
.platform-item.fansly-logo:hover { color: #1e90ff; text-shadow: 0 0 15px rgba(30, 144, 255, 0.4); }
.platform-item.fanvue-logo:hover { color: #ff007f; text-shadow: 0 0 15px rgba(255, 0, 127, 0.4); }

/* Components */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(241, 37, 110, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

[data-theme="light"] .glass-card:hover {
    border-color: rgba(216, 27, 96, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1-5);
}

.glass-card:hover::before {
    left: 150%;
}

.feature-card .icon-wrap {
    width: 65px; height: 65px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--accent-1);
    box-shadow: inset 0 0 15px rgba(241, 37, 110, 0.1);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing */
.pricing-grid {
    align-items: center;
}

.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card.popular {
    transform: scale(1.05);
    border: 1px solid var(--accent-1);
    box-shadow: 0 0 40px rgba(241, 37, 110, 0.2);
    position: relative;
    background: rgba(35, 10, 20, 0.7);
}

[data-theme="light"] .price-card.popular {
    background: rgba(255, 230, 240, 0.8);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card .badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    border: none;
    margin: 0;
    border-radius: 0 0 15px 15px;
    padding: 10px 24px;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.price-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-val {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.price-val span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.old-price {
    font-size: 1.6rem !important;
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 12px;
    vertical-align: middle;
}

.discount-badge {
    background: rgba(255, 68, 102, 0.15);
    color: var(--accent-1);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 68, 102, 0.3);
}

.price-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--accent-1);
    font-size: 14px;
}

.price-card .btn {
    width: 100%;
}

/* FAQ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-header i {
    color: var(--accent-1);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-content {
    padding-bottom: 24px;
    max-height: 300px;
    opacity: 1;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: rgba(11, 2, 6, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

[data-theme="light"] footer {
    background: rgba(252, 241, 245, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-links-col h4 {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--text-main);
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

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

.social-links {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations & Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 992px) {
    .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .pricing-grid { align-items: stretch; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-10px); }
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-1);
}

@media (max-width: 1024px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; }
    .hero { padding-top: 120px; text-align: center; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto 50px; }
    .hero-btns .btn { width: 100%; }
    .section { padding: 80px 0; }
    .glass-card { padding: 30px; }
}
