/* Reset & basics */

header {
    text-align: center;
    margin-bottom: 20px;
}


/* blur box */

.blur-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-home {
    color: white;
    /* border: 1px solid red; */
    width: 400px;
    max-width: 100%;
    padding: 20px;
    align-items: center;
}

.back-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


/* Plan cards */

.plans {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    text-align: center;
    position: relative;
}

.plan.popular {
    border: 2px solid #c00;
}

.plan h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.plan .price {
    font-size: 2rem;
    font-weight: bold;
}

.plan .price span {
    font-size: 1rem;
    color: #666;
}

.plan .tag {
    margin: 10px 0;
    color: #c00;
    font-weight: bold;
}

.select-btn {
    background: #c00;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.select-btn:hover {
    background: #a00;
}


/* Subscribe button */

footer {
    text-align: center;
    margin-top: 30px;
}

#subscribe-btn {
    background: #090;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
}

#subscribe-btn.enabled {
    opacity: 1;
}