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

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 100px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: bounce 2s ease-in-out infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

h1 {
    font-size: 2.5rem;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    background: rgba(255, 255, 255, 0.95);
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.intro {
    text-align: center;
    font-size: 1.1rem;
}

.point {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-left: 5px solid #3498db;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.point:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: scale(1.02);
}

.conclusion {
    text-align: center;
    background: rgba(231, 76, 60, 0.1);
    border: 3px solid #e74c3c;
}

.big-text {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.disclaimer {
    background: rgba(255, 193, 7, 0.2);
    border: 2px dashed #ffc107;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: white;
    margin-top: 3rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

footer span {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .big-text {
        font-size: 2rem;
    }
    
    main {
        padding: 0 1rem;
    }
    
    section {
        padding: 1rem;
    }
}

/* Fun hover effects */
.point:nth-child(odd) {
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-1deg); }
    20% { transform: rotateZ(1deg); }
    25% { transform: rotateZ(0); }
    100% { transform: rotateZ(0); }
}