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

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    background: linear-gradient(45deg, #FCD116, #DA121A, #FCD116, #DA121A);
    background-size: 400% 400%;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    z-index: 10;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 120px);
    color: #fff;
    text-shadow: 5px 5px 0 #DA121A,
    10px 10px 0 #FCD116,
    15px 15px 0 #DA121A,
    20px 20px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 10px;
    margin: 20px 0;
}

.hero img {
    width: 80px;
    height: auto;
    margin: 5px;
}

.section {
    background: rgba(255, 255, 255, 0.95);
    border: 10px solid #DA121A;
    border-radius: 30px;
    padding: 30px 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
    transition: all 0.3s;
}

.section:nth-child(even) {
    transform: rotate(1deg);
}

.section h2 {
    font-size: clamp(30px, 6vw, 60px);
    color: #DA121A;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #FCD116;
}

.section p {
    font-size: clamp(18px, 4vw, 26px);
    line-height: 1.6;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.heart-container,
.flag-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.heart-container img,
.flag-row img {
    width: 140px;
    height: auto;
}

.section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(36px, 10vw, 70px);
        letter-spacing: 5px;
    }

    .hero img {
        width: 60px;
    }

    .section h2 {
        font-size: clamp(24px, 6vw, 40px);
    }

    .section p {
        font-size: clamp(16px, 4vw, 20px);
    }

    .heart-container img,
    .flag-row img {
        width: 50px;
    }
}
