* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, #ff8fc8 0%, #ff4fa3 35%, #281329 100%);
    color: white;
    min-height: 100vh;
}

.container {
    width: min(900px, 92%);
    margin: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.logo {
    font-weight: 900;
    letter-spacing: 5px;
    font-size: 18px;
    opacity: 0.85;
}

h1 {
    font-size: clamp(42px, 8vw, 82px);
    line-height: 0.95;
    max-width: 800px;
    margin: 25px auto;
}

.intro {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.9;
}

.hands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(60px, 15vw, 120px);
    margin: 35px 0;
}

.hand {
    display: inline-block;
    transition: transform 0.18s ease;
}

.left {
    transform: scaleX(-1);
}

.impact {
    font-size: 0.55em;
    opacity: 0;
    transform: scale(0);
    transition: all 0.15s ease;
}

.hands.pounded .left {
    transform: scaleX(-1) translateX(-22px);
}

.hands.pounded .right {
    transform: translateX(-22px);
}

.hands.pounded .impact {
    opacity: 1;
    transform: scale(1.35);
}

button {
    border: none;
    padding: 22px 42px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    background: white;
    color: #d72882;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transition: transform 0.15s ease;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.96);
}

.counter {
    margin-top: 25px;
    opacity: 0.8;
}

.card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 30px;
    padding: 50px;
    margin: 40px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.card h2 {
    font-size: 36px;
}

.card p {
    font-size: 20px;
    line-height: 1.6;
}

.manifesto {
    font-size: 30px !important;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 80px 20px;
    opacity: 0.7;
}
