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

body{
    font-family:'Poppins',sans-serif;
    background:#f4f4f4;
    color:#111;
}

.container{
    max-width:500px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
}

.profile{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
}

h1{
    margin-top:20px;
    font-size:32px;
    font-weight:700;
}

.subtitle{
    margin-top:10px;
    font-size:18px;
    letter-spacing:2px;
}

.btn{
    display:block;
    width:100%;
    margin-top:14px;
    padding:16px;
    border-radius:18px;
    background:white;
    text-decoration:none;
    color:#111;
    font-size:18px;
    font-weight:600;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.premium{
    border:3px solid #ea97a5;
}

.more-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.card{
    max-width:500px;
    width:100%;
    background:white;
    padding:40px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.lock{
    font-size:60px;
}

.more-text{
    margin-top:20px;
    line-height:1.5;
}

.arrow{
    position: fixed;
    top: 40px;
    right: 15px;
    width: 140px;
    height: auto;
    transform: rotate(-8deg);
    z-index: 999;
    opacity: .9;
}

.steps{
    margin-top:30px;
}

.step{
    background:#f7f7f7;
    padding:20px;
    border-radius:20px;
    margin-top:12px;
}