:root {
    --primary: #ff3e3e;
    --secondary: #8b00ff;
    --accent: #ff9100;
    --dark: #1e1525;
    --dark-purple: #2a1930;
    --light: #ffffff;
    --glass-bg: rgba(43, 25, 48, 0.25);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #ff3e3e, #ff9100);
    --gradient-2: linear-gradient(45deg, #8b00ff, #ff3e3e);
    --gradient-sinister: linear-gradient(to right, #2a1930, #1e1525);
    --glow-primary: 0 0 20px rgba(255, 62, 62, 0.3);
    --glow-secondary: 0 0 20px rgba(139, 0, 255, 0.3);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    background: var(--gradient-sinister);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Emoji Background Animation */
.emoji-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.emoji {
    position: absolute;
    font-size: 3rem;
    opacity: 0.08;
    animation: floatEmoji 20s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 62, 62, 0.3));
}

.emoji:nth-child(1) { left: 10%; animation-delay: 0s; }
.emoji:nth-child(2) { left: 30%; animation-delay: -5s; }
.emoji:nth-child(3) { left: 50%; animation-delay: -10s; }
.emoji:nth-child(4) { left: 70%; animation-delay: -15s; }
.emoji:nth-child(5) { left: 90%; animation-delay: -7s; }
.emoji:nth-child(6) { left: 20%; animation-delay: -12s; }
.emoji:nth-child(7) { left: 40%; animation-delay: -3s; }
.emoji:nth-child(8) { left: 60%; animation-delay: -8s; }

@keyframes floatEmoji {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.08;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Glass Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Typography */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 4rem;
    font-weight: 800;
    text-shadow: var(--glow-primary);
}

.gradient-text-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: var(--glow-secondary);
}

.tagline {
    font-size: 1.5rem;
    color: var(--light);
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Logo and Badge */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.badge {
    background: var(--light);
    color: var(--dark-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(12deg);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.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: 0.5s;
}

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

.btn-primary {
    background: var(--gradient-1);
    color: var(--light);
    box-shadow: var(--glow-primary);
}

.btn-secondary {
    background: var(--gradient-2);
    color: var(--light);
    box-shadow: var(--glow-secondary);
}

.btn-ghost {
    border: 2px solid var(--glass-border);
    color: var(--light);
    background: var(--glass-bg);
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-emoji {
    font-size: 1.2em;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 62, 62, 0.3));
}

.feature-card.angel .feature-icon {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card.devil .feature-icon {
    filter: drop-shadow(0 0 10px rgba(255, 62, 62, 0.3));
}

.feature-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 62, 62, 0.1),
        transparent 70%
    );
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 62, 62, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-primary);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.hero-description {
    font-size: 1.2rem;
    margin: 1.5rem auto;
    max-width: 600px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.divider {
    color: var(--glass-border);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
    padding: 2rem;
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-primary);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 62, 62, 0.05),
        transparent
    );
    pointer-events: none;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    margin: 4rem 0;
    padding: 2rem;
}

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

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    opacity: 0.1;
    font-family: serif;
    color: var(--accent);
}

.testimonial-text {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author::before {
    content: '—';
    color: var(--glass-border);
}

/* Legal Pages */
.legal-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.logo-link {
    text-decoration: none;
}

.legal-date {
    color: var(--accent);
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.legal-content {
    margin-top: 3rem;
}

.legal-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section p {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section li {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.legal-conclusion {
    text-align: center;
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .glass-container {
        padding: 2rem;
        margin: 1rem;
    }

    .gradient-text {
        font-size: 3rem;
    }

    .gradient-text-2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .cta-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-emoji {
        font-size: 1.1em;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .faq-section {
        padding: 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }

    .testimonials-section {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .legal-container {
        padding: 1rem;
        margin: 1rem;
    }

    .legal-intro {
        font-size: 1.1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-emoji {
        font-size: 1em;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
