/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(180deg,#ff5ca8,#ff90c5,#ffe0ef);
    color:#333;
    min-height:100vh;
}

/* ===========================
   CONTAINER
=========================== */

.container{
    width:100%;
    max-width:430px;
    margin:30px auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    animation:fadeIn .5s ease;
}

/* ===========================
   HERO
=========================== */

.hero{
    height:300px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,rgba(0,0,0,.55),transparent);
}

.hero-content{
    position:absolute;
    bottom:20px;
    left:20px;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-size:30px;
    margin-bottom:5px;
}

.hero-content p{
    font-size:15px;
}

/* ===========================
   CONTENT
=========================== */

.content{
    padding:25px;
}

.content h2{
    color:#ff2d86;
    margin-bottom:10px;
}

.content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

/* ===========================
   FEATURES
=========================== */

.features{
    display:grid;
    gap:12px;
    margin-bottom:25px;
}

.feature{
    background:#fff0f6;
    padding:15px;
    border-radius:14px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-3px);
}

/* ===========================
   BUTTON
=========================== */

.btn{
    display:block;
    width:100%;
    text-align:center;
    background:#ff2d86;
    color:white;
    text-decoration:none;
    padding:16px;
    border-radius:40px;
    font-size:17px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#e00068;
}

/* ===========================
   FOOTER
=========================== */

.footer{
    text-align:center;
    padding:20px;
    color:#777;
    font-size:13px;
}

/* ===========================
   ANIMATION
=========================== */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:480px){

.hero{

height:250px;

}

.hero-content h1{

font-size:25px;

}

.content{

padding:20px;

}

.btn{

font-size:16px;

}

}