* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.banana-animation {
    position: relative;
    height: 120px;
    margin-bottom: 30px;
}

.banana {
    font-size: 60px;
    animation: bananaFall 3s ease-in-out infinite;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.splat {
    font-size: 80px;
    opacity: 0;
    animation: splat 3s ease-in-out infinite;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

@keyframes bananaFall {
    0%, 70% {
        top: 0;
        transform: translateX(-50%) rotate(0deg);
    }
    80% {
        top: 60px;
        transform: translateX(-50%) rotate(180deg);
    }
    90%, 100% {
        top: 60px;
        transform: translateX(-50%) rotate(180deg);
    }
}

@keyframes splat {
    0%, 75% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    85% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1);
    }
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

/* Story Section */
.story {
    margin-bottom: 40px;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 80%;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 40px;
    padding: 30px;
    border-left: 5px solid #feca57;
    background: rgba(254, 202, 87, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.story-section:hover {
    transform: translateX(10px);
}

.story-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.highlight-text {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    text-align: center;
    margin: 20px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.quote {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin: 25px 0;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.achievements {
    list-style: none;
    padding: 0;
}

.achievements li {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(254, 202, 87, 0.3);
    transition: transform 0.3s ease;
}

.achievements li:hover {
    transform: scale(1.05);
}

.final-quote {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(72, 219, 251, 0.3);
}

.final-quote p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.final-quote strong {
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.footer p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Payment Buttons */
.payment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.payment-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: left 0.5s;
}

.payment-btn:hover::before {
    left: 100%;
}

.paypal-btn {
    background: linear-gradient(135deg, #0070ba, #1546a0);
    color: white;
}

.paypal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 112, 186, 0.4);
}

.cashapp-btn {
    background: linear-gradient(135deg, #3d95ce, #1e3a8a);
    color: white;
}

.cashapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(61, 149, 206, 0.4);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-text {
    font-weight: 600;
}

.payment-note {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    font-style: italic;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .story-section {
        padding: 20px;
    }
    
    .story-section h2 {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
    
    .quote {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .achievements li {
        font-size: 1rem;
        padding: 15px;
    }
    
    .payment-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Loading Animation */
.story-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.story-section:nth-child(1) { animation-delay: 0.2s; }
.story-section:nth-child(2) { animation-delay: 0.4s; }
.story-section:nth-child(3) { animation-delay: 0.6s; }
.story-section:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styles from styles2.css */
.story-header {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-header::before {
    content: '🍌';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    top: -50px;
    right: -50px;
    animation: float 3s ease-in-out infinite;
}

.story-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.story-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.story-meta {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 3px solid #FFD700;
}

.chapter-nav {
    background: #2c3e50;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.chapter-nav a {
    color: #FFD700;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.chapter-nav a:hover {
    background: #FFD700;
    color: #2c3e50;
    transform: translateY(-2px);
}

.story-section h2::before {
    content: attr(data-chapter);
    position: absolute;
    left: -40px;
    top: -10px;
    background: #FFD700;
    color: #2c3e50;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.interactive {
    background: #e8f4f8;
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed #667eea;
}

.interactive h2 {
    border-left-color: #667eea;
}

.interactive textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    margin: 15px 0;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.interactive textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.share-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.payment-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    margin: 40px -40px -40px -40px;
    padding: 40px;
    color: white;
    text-align: center;
}

.payment-section h2 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Additional animations from styles2.css */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Additional responsive styles from styles2.css */
@media (max-width: 768px) {
    .story-title { 
        font-size: 2rem; 
    }
    
    .payment-section { 
        margin: 20px -20px -20px -20px; 
        padding: 30px 20px; 
    }
    
    .chapter-nav { 
        flex-direction: column; 
        gap: 10px; 
    }
} 