@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 50%, #4a2a1a 100%);
    color: #f5e6d3;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.glitch-effect {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #8b4513, #d2b48c, #cd853f, #daa520);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 10px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.4rem;
    color: #d2b48c;
    margin-bottom: 30px;
    font-weight: 300;
}

.stats-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.2);
    border: 2px solid #8b4513;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #daa520;
    margin: 10px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero {
    background: rgba(210, 180, 140, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(210, 180, 140, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #daa520;
    font-weight: 700;
}

.hero-text {
    font-size: 1.1rem;
    color: #f5e6d2;
    margin-bottom: 30px;
    line-height: 1.8;
}

.investment-highlight {
    background: rgba(218, 165, 32, 0.1);
    border-left: 4px solid #daa520;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-weight: 600;
    color: #daa520;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(210, 180, 140, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(210, 180, 140, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #daa520;
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b4513, #daa520);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #daa520;
    font-weight: 600;
}

.feature-card p {
    color: #d2b48c;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 25px;
    margin: 40px 0;
    border: 2px solid rgba(139, 69, 19, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #8b4513;
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    color: #daa520;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.old-price {
    text-decoration: line-through;
    color: #8b7355;
    font-size: 1.5rem;
    margin-right: 15px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #8b4513, #daa520);
    color: #f5e6d3;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
}

.urgency-text {
    font-size: 0.9rem;
    color: #8b4513;
    margin-top: 15px;
    font-weight: 500;
}

/* Bonus Section */
.bonus-section {
    background: rgba(205, 133, 63, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid rgba(205, 133, 63, 0.3);
}

.bonus-title {
    font-size: 2rem;
    color: #cd853f;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1.1rem;
    color: #f5e6d3;
}

.bonus-item::before {
    content: '🎁';
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Testimonial */
.testimonial {
    background: rgba(210, 180, 140, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #daa520;
    font-style: italic;
    font-size: 1.1rem;
    color: #f5e6d3;
}

.testimonial-author {
    text-align: right;
    margin-top: 15px;
    color: #daa520;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        padding: 25px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

/* Floating Elements */
.floating-element {
    position: fixed;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(218, 165, 32, 0.1));
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.floating-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
