body{
    margin:0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color:#fff;
}

/* Wrapper */
.wrapper{
    max-width:1100px;
    margin:auto;
    padding:20px;
    text-align:center;
}

/* Header */
.header h1{
    margin-bottom:5px;
    font-weight:600;
}

.header p{
    color:#cbd5f5;
    font-size:14px;
}

/* Email */
.email-box{
    margin:20px 0;
}

.email-box input{
    width:100%;
    max-width:400px;
    padding:12px;
    border-radius:8px;
    border:none;
    outline:none;
    font-size:14px;
}

/* Plans Grid */
.plans{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

/* Plan Card */
.plan-card{
    background:#ffffff;
    color:#111;
    padding:20px;
    border-radius:12px;
    position:relative;
    transition:0.3s;
}

.plan-card:hover{
    transform:translateY(-5px);
}

/* VIP */
.plan-card.vip{
    border:2px solid gold;
    background:#fffbea;
}

/* Badge */
.badge{
    position:absolute;
    top:10px;
    right:10px;
    background:gold;
    color:black;
    padding:5px 8px;
    font-size:12px;
    border-radius:5px;
}

/* Price */
.price{
    font-size:26px;
    font-weight:600;
    margin:10px 0;
    color: green;
}

/* List */
.plan-card ul{
    list-style:none;
    padding:0;
    font-size:14px;
}

.plan-card ul li{
    margin:5px 0;
}

/* Button */
button{
    margin-top:15px;
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#22262e;
    color:white;
    font-size:15px;
    cursor:pointer;
}

button:hover{
    background:#30374d;
}
.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    margin: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features i {
    color: #198450; /* nice green */
    width: 20px;
}

/* Footer */
.footer{
    margin-top:30px;
    font-size:12px;
    color:#cbd5f5;
}