@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;700;800&display=swap');
:root {
    --accent: #FFB7C5;
    --accent-glow: rgba(255, 183, 197, 0.4);
    --bg: #050505;
    --card: rgba(20, 20, 20, 0.6);
    --border: rgba(255, 183, 197, 0.12);
    --text-main: #ffffff;
    --text-muted: #a1a1a1;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: default;
}
a, button {
    cursor: pointer;
}
body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle at 15% 30%, rgba(255, 183, 197, 0.08), transparent 30%), radial-gradient(circle at 85% 70%, rgba(255, 183, 197, 0.06), transparent 30%);
    background-size: 100vw 100vh, 100vw 100vh;
    background-position: 0 0, 0 0;
    background-attachment: fixed;
}
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}
h1, h2, h3, .price, .logo-text, .title, .heading {
    font-family: var(--font-heading);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--text-main);
    text-transform: uppercase;
}
.logo-text span {
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}
.links {
    display: flex;
    gap: 32px;
}
.links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}
.links a:hover, .links a.active {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hero {
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 197, 0.05);
    border: 1px solid rgba(255, 183, 197, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulse 2s infinite;
}
.hero .title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}
.hero .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #FFB7C5 50%, #ff8da5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}
.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn {
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}
.btn:hover::before {
    left: 100%;
}
.btn-fill {
    background: linear-gradient(135deg, #FFB7C5 0%, #ff8da5 100%);
    color: #000000;
    box-shadow: 0 0 30px var(--accent-glow), inset 0 2px 0 rgba(255,255,255,0.4);
    border: none;
}
.btn-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--accent-glow), inset 0 2px 0 rgba(255,255,255,0.4);
}
.btn-ghost {
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.3);
}
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
}
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto 80px;
}
.pricing-card {
    background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.9) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    overflow: hidden;
}
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 183, 197, 0.3);
}
.pricing-card:hover::after {
    opacity: 1;
}
.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-body);
}
.robux-price {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}
.features li {
    margin-bottom: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}
.pricing-card .btn {
    text-align: center;
    width: 100%;
}
.payment-methods {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 60px;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.faq-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
    backdrop-filter: blur(10px);
}
.faq-item.active {
    border-color: rgba(255, 183, 197, 0.2);
}
.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, color 0.3s;
}
.faq-item.active .faq-question {
    color: var(--accent);
    background: rgba(255, 183, 197, 0.02);
}
.faq-question:hover {
    background: rgba(255, 183, 197, 0.04);
}
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-main);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after {
    background: var(--accent);
}
.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}
.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease, opacity 0.4s ease;
    padding: 0 30px;
    opacity: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 24px;
    opacity: 1;
}
.faq-answer a {
    color: var(--accent);
    text-decoration: none;
}
.faq-answer a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: auto;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 183, 197, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 183, 197, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 183, 197, 0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px auto 0;
    flex-wrap: wrap;
    max-width: 900px;
    width: 90%;
}
.stat-box {
    background: linear-gradient(160deg, rgba(20,20,20,0.6) 0%, rgba(5,5,5,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 24px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    min-width: 200px;
}
.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255,183,197,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 15px 40px rgba(0,0,0,0.6), 0 0 30px rgba(255,183,197,0.08);
}
.stat-box h3 {
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-shadow: 0 0 15px var(--accent-glow);
}
.stat-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
        padding: 20px;
    }
    .hero .title {
        font-size: 3.5rem;
    }
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .btn {
        width: 100%;
    }
    .stats-wrapper {
        gap: 15px;
    }
    .stat-box {
        width: 100%;
    }
}
