:root {
    --primary: #EC567C;
    --primary-hover: #d9446b;
    --secondary: #16a34a;
    --bg: #161C28;
    --bg-light: #1e2636;
    --bg-card: #252d3f;
    --text: #ffffff;
    --text-muted: #b0b8c9;
    --border: rgba(255, 255, 255, 0.1);
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.45);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.header-banner {
    background: linear-gradient(90deg, #f8c8dc 0%, #f5a3c7 50%, #f8c8dc 100%);
    background-size: cover;
    text-align: center;
    padding: 0.65rem 1rem;
}
.banner-link {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}
.logo-porn {
    color: var(--text);
    margin-right: 0.25rem;
}
.logo-journey {
    background: var(--primary);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.btn-login {
    font-weight: 600;
    padding: 0.5rem 1rem;
}
.btn-premium {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.btn-premium:hover {
    background: var(--primary-hover);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    position: relative;
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(236, 86, 124, 0.15) 0%, transparent 50%), var(--bg);
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.trust-icon {
    color: var(--primary);
    font-weight: 700;
}
section {
    padding: 4rem 0;
}
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 0.75rem;
    line-height: 1.25;
}
.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}
.why-choose {
    background: var(--bg-light);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.feature-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.feature-card span {
    display: block;
    padding: 0.9rem;
    font-weight: 600;
    text-align: center;
}
.steps {
    background: var(--bg-light);
}
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    min-width: 180px;
    flex: 1;
}
.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}
.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}
.step-time {
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
}
.characters {
    background: var(--bg);
}

.character-group {
    margin-bottom: 3.5rem;
}

.group-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
    border-left: 4px solid var(--primary);
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.character-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.character-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
.character-info {
    padding: 1rem;
}
.character-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.character-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}
.character-info span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}
.showcase {
    background: var(--bg-light);
}
.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.showcase-row.reverse .showcase-image {
    order: 2;
}
.showcase-row.reverse .showcase-text {
    order: 1;
}
.showcase-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.showcase-image:hover {
    transform: scale(1.01);
}
.showcase-image img {
    width: 100%;
    height: auto;
}
.showcase-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.showcase-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.pricing {
    background: var(--bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.03);
}
.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}
.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.save-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}
.pricing-card ul li {
    padding: 0.4rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.pricing-card ul li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
}
.faq {
    background: var(--bg-light);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1.1rem 1.25rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.safety {
    background: var(--bg);
    text-align: center;
}
.safety-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.safety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.safety-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}
.safety-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.site-footer {
    background: #0d1117;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 0.95rem;
}
.footer-links,
.footer-languages,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a,
.footer-languages a,
.footer-legal a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover,
.footer-languages a:hover,
.footer-legal a:hover {
    color: var(--primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-bottom .disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}
@media (max-width: 1024px) {
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .showcase-row.reverse .showcase-image,
    .showcase-row.reverse .showcase-text {
        order: unset;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        padding: 3rem 1rem 4rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
    .steps-grid {
        flex-direction: column;
    }
    .step-arrow,
    .step-time {
        margin: 0.5rem 0;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links,
    .footer-languages,
    .footer-legal {
        align-items: center;
    }
}

/* Legal pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}
.legal-page h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.legal-page .legal-updated {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.legal-page h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.legal-page p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}
.legal-page a:hover {
    color: var(--primary-hover);
}
.legal-back {
    margin-top: 3rem;
}
.legal-header {
    border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 1.75rem;
    }
}
