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

body {
    font-family: 'Arial', sans-serif;
    background: #0A0A0A;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Matrix Background Animation */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00FF00;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9B5DE5;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #9B5DE5;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #9B5DE5, #33FFB9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #9B5DE5, #33FFB9);
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(155, 93, 229, 0.3);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(155, 93, 229, 0.6);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #9B5DE5;
}

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

.service-card {
    background: rgba(155, 93, 229, 0.1);
    border: 1px solid #9B5DE5;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 93, 229, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #33FFB9;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.3rem 0;
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background: rgba(10, 10, 10, 0.8);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #9B5DE5;
}

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

.pricing-tier {
    background: rgba(155, 93, 229, 0.1);
    border: 2px solid #333;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.pricing-tier.featured {
    border-color: #FF4C61;
    transform: scale(1.05);
}

.pricing-tier h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #33FFB9;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9B5DE5;
    margin-bottom: 1rem;
}

.pricing-tier ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-tier li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* PayPal Button Styling */
.paypal-button {
    background: #0070ba;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.paypal-button:hover {
    background: #005ea6;
    transform: translateY(-2px);
    color: white;
}

/* Upsell Toggle */
.upsell-toggle {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 76, 97, 0.1);
    border: 1px solid #FF4C61;
    border-radius: 5px;
    text-align: left;
}

.toggle-checkbox {
    margin-right: 0.5rem;
}

/* Product Pages */
.product-hero {
    padding: 8rem 2rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(45deg, #9B5DE5, #33FFB9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.urgency {
    background: #FF4C61;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 1rem 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.product-card {
    background: rgba(155, 93, 229, 0.1);
    border: 1px solid #9B5DE5;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 2rem auto;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li::before {
    content: "⚡";
    color: #33FFB9;
    margin-right: 0.5rem;
}

/* Thank You Pages */
.thank-you {
    padding: 8rem 2rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: #33FFB9;
    margin-bottom: 1rem;
}

.next-steps {
    background: rgba(155, 93, 229, 0.1);
    border: 1px solid #9B5DE5;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #9B5DE5;
    margin-bottom: 1rem;
}

.next-steps ul {
    margin-left: 1rem;
}

.next-steps li {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services, .pricing {
        padding: 3rem 1rem;
    }

    .pricing-tier.featured {
        transform: none;
    }

    .header {
        padding: 1rem;
    }

    .product-hero, .thank-you {
        padding: 6rem 1rem 2rem;
    }

    .product-card, .next-steps {
        padding: 1.5rem;
    }
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #9B5DE5;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}