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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: block;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
}

.content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lanly-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    animation: gentle-float 3s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.lanly-image:hover {
    transform: scale(1.05);
}

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

.hero-message {
    margin-bottom: 30px;
}

.hero-message h1 {
    color: #8B4513;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-message p {
    color: #5D4037;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    margin-top: 20px;
}

.facebook-link {
    display: inline-block;
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    background: linear-gradient(45deg, #166fe5, #3b9ae1);
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }
    
    .message h1 {
        font-size: 1.8rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .lanly-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-message h1 {
        font-size: 1.5rem;
    }
    
    .facebook-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Hero Section Centering */
.container:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Information Sections */
.info-section,
.problem-section,
.audience-section,
.how-it-works-section,
.benefits-section,
.flow-section,
.currency-section,
.final-section {
    padding: 60px 0;
    margin: 0 auto;
}

.info-section {
    background-color: #ffffff;
}

.problem-section {
    background-color: #f8f9fa;
}

.audience-section {
    background-color: #ffffff;
}

.how-it-works-section {
    background-color: #f8f9fa;
}

.benefits-section {
    background-color: #ffffff;
}

.flow-section {
    background-color: #f8f9fa;
}

.currency-section {
    background-color: #ffffff;
}

.final-section {
    background-color: #8B4513;
    color: white;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-content h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.final-section .section-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-content p {
    color: #5D4037;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.final-section .section-content p {
    color: white;
    font-size: 1.3rem;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-item {
    background-color: rgba(139, 69, 19, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.1);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.audience-item h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.audience-item p {
    color: #5D4037;
    font-size: 1rem;
    margin: 0;
}

/* How It Works Steps */
.step {
    margin-bottom: 50px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #8B4513;
}

.step h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.step p {
    margin-bottom: 15px;
    text-align: center;
}

/* Chat Examples */
.chat-examples {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-message {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 18px;
    border-radius: 18px 18px 5px 18px;
    max-width: 70%;
    align-self: flex-end;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.bot-response {
    background: #f0f0f0;
    color: #333;
    padding: 15px 20px;
    border-radius: 18px 18px 18px 5px;
    max-width: 80%;
    align-self: flex-start;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(139, 69, 19, 0.2);
}

.benefit-item h3 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.benefit-item p {
    color: #5D4037;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Flow Steps */
.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.flow-step {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 20px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.flow-step:hover {
    transform: scale(1.05) translateY(-2px);
}

.flow-arrow {
    font-size: 2rem;
    color: #8B4513;
    font-weight: bold;
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, #2c1810, #8B4513);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.coming-soon-text {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.coming-soon-text .coming,
.coming-soon-text .soon {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 15px;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

.coming-soon-text .coming {
    color: #FFD700;
    text-shadow: 
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 30px #FFD700,
        0 0 40px #FFD700;
    animation-delay: 0s;
}

.coming-soon-text .soon {
    color: #FF6B35;
    text-shadow: 
        0 0 10px #FF6B35,
        0 0 20px #FF6B35,
        0 0 30px #FF6B35,
        0 0 40px #FF6B35;
    animation-delay: 1s;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 30px currentColor,
            0 0 40px currentColor;
        transform: scale(1);
    }
    to {
        text-shadow: 
            0 0 20px currentColor,
            0 0 30px currentColor,
            0 0 40px currentColor,
            0 0 50px currentColor,
            0 0 60px currentColor;
        transform: scale(1.05);
    }
}

.coming-soon-subtitle {
    position: relative;
    z-index: 2;
}

.coming-soon-subtitle p {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .section-content h2 {
        font-size: 1.6rem;
    }
    
    .final-section .section-content h2 {
        font-size: 2.2rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        padding: 20px;
    }
    
    .user-message,
    .bot-response {
        max-width: 85%;
        font-size: 0.9rem;
    }
    
    .flow-step {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .hero-message h1 {
        font-size: 1.8rem;
    }
    
    .hero-message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-content {
        padding: 0 15px;
    }
    
    .section-content h2 {
        font-size: 1.4rem;
    }
    
    .final-section .section-content h2 {
        font-size: 1.8rem;
    }
    
    .step {
        padding: 15px;
    }
    
    .audience-item,
    .benefit-item {
        padding: 20px 15px;
    }
    
    .flow-step {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .coming-soon-text .coming,
    .coming-soon-text .soon {
        font-size: 2.5rem;
        margin: 0 8px;
    }
    
    .coming-soon-subtitle p {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .coming-soon-text .coming,
    .coming-soon-text .soon {
        font-size: 2rem;
        margin: 0 5px;
    }
    
    .coming-soon-subtitle p {
        font-size: 1rem;
    }
}
