/*
Theme Name: ByeByeMoney Pro
Version: 6.0.0
Description: Premium money disposal theme - Real payment forms, testimonials, FAQ, confetti, pricing tiers
Author: ByeByeMoney
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --blue: #3b82f6;
    --green: #10b981;
    --yellow: #fbbf24;
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* BACKGROUND EFFECTS */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    filter: blur(120px);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

/* BLACK HOLE PREMIUM */
.black-hole {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    z-index: 1;
}

.black-hole-core {
    position: absolute;
    inset: 30%;
    background: radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.6) 0%, rgba(10, 1, 24, 0.95) 50%, #000 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(139, 92, 246, 1),
        0 0 120px rgba(139, 92, 246, 0.6),
        inset 0 0 60px rgba(0, 0, 0, 0.9);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.15); opacity: 1; }
}

.black-hole-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.2);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* FLYING MONEY - HUGE & IMPROVED */
.flying-money {
    position: fixed;
    font-size: 4.5rem !important;
    z-index: 5;
    opacity: 1;
    filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.8));
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

@keyframes spiral {
    0% {
        transform: translate(var(--startX), var(--startY)) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) scale(0) rotate(1440deg);
        opacity: 0;
    }
}

/* CONFETTI */
.confetti {
    position: fixed;
    pointer-events: none;
    z-index: 100;
    font-size: 2rem;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(0,0,0,0.98);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.header-nav {
    display: flex;
    gap: 3rem;
}

.header-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.header-nav a:hover {
    color: var(--purple);
    transform: translateY(-2px);
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.content {
    padding-top: 6rem;
}

/* HERO SECTION */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    line-height: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.375rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* PAYMENT SECTION */
.payment-section {
    padding: 4rem 0;
    position: relative;
    z-index: 15;
}

.payment-box {
    background: rgba(139, 92, 246, 0.08);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 32px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.payment-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-methods {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.payment-method {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-method:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--purple);
    transform: translateX(8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.payment-method.active {
    background: rgba(139, 92, 246, 0.25);
    border-color: var(--purple);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.payment-method .icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.payment-method .info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 700;
}

.payment-method .info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.amount-input {
    margin-bottom: 2.5rem;
}

.amount-input label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.amount-input input {
    width: 100%;
    padding: 1.5rem;
    font-size: 2.5rem;
    background: rgba(0,0,0,0.3);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    text-align: center;
    transition: var(--transition);
}

.amount-input input:focus {
    outline: none;
    background: rgba(0,0,0,0.5);
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.button {
    width: 100%;
    padding: 1.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.6s ease;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.6);
}

.button:active {
    transform: translateY(-2px);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 5rem 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.testimonial:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--purple);
    transform: translateY(-12px);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.testimonial-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    color: var(--purple);
    font-weight: 700;
    font-size: 0.95rem;
}

/* FAQ SECTION */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--purple);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.01);
    transition: var(--transition);
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.08);
}

.faq-toggle {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.5rem;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: rgba(255,255,255,0.7);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    line-height: 1.8;
}

/* STATS COUNTER */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 32px;
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* PRICING SECTION */
.pricing-section {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--purple);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.3);
    transform: translateY(-12px);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    list-style: none;
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* SEO SECTION */
.seo-section {
    padding: 5rem 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.seo-content {
    max-width: 950px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

.seo-content h3 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--purple);
    font-weight: 700;
}

.seo-content p {
    margin-bottom: 1.75rem;
}

/* FOOTER */
.site-footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 3rem 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container,
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .payment-box {
        padding: 2rem 1.5rem;
    }
    
    .black-hole {
        width: 200px;
        height: 200px;
    }
    
    .flying-money {
        font-size: 3.5rem !important;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}
