/* ===============================
   PAYWALL CENTERED PREMIUM FIXED
   =============================== */

.kw-paywall-scope {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.kw-paywall-card {
    width: 420px;
    max-width: 100%;
    padding: 45px 35px;
    border-radius: 24px;
    background: linear-gradient(180deg,#121212 0%,#0a0a0a 100%);
    text-align: center;
    box-shadow: 0 0 70px rgba(255,200,0,0.15);
}

/* Register */

.kw-btn{
    display:inline-block;
    padding:15px 40px;
    border-radius:18px;

    background:linear-gradient(135deg,#f5c542,#ffde73);
    color:#000;

    font-size:15px;
    font-weight:700;
    text-decoration:none;

    box-shadow:0 14px 40px rgba(245,197,66,.55);
    transition:.25s;
}

.kw-btn:hover{
    transform:translateY(-2px);
}

/* TITLE */
.kw-paywall-card h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.kw-paywall-card p {
    font-size: 14px;
    opacity: .6;
    margin-bottom: 25px;
}

/* ===============================
   PLANS
   =============================== */

.kw-plans {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.kw-plan {
    width: 110px;
    padding: 20px 15px;
    border-radius: 18px;
    border: 1px solid #222;
    cursor: pointer;
    transition: 0.25s ease;
    background: #111;
    position: relative;
    user-select: none;
}

.kw-plan:hover {
    transform: translateY(-4px);
    border-color: #ffc800;
}

.kw-plan.active {
    border: 2px solid #ffc800;
    box-shadow: 0 0 25px rgba(255,200,0,0.45);
    background: #151515;
}

.kw-plan h3 {
    font-size: 14px;
    opacity: .7;
    margin-bottom: 8px;
}

.kw-price {
    font-size: 20px;
    font-weight: 600;
    color: #ffc800;
}

/* ===============================
   CRYPTO BUTTON
   =============================== */

.kw-crypto-btn {
    margin-top: 18px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(90deg,#16c784,#0fa76d);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: .3s ease;
}

.kw-crypto-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 18px rgba(22,199,132,.6);
}

/* MOBILE */
@media (max-width:480px){

    .kw-paywall-card{
        padding:35px 20px;
    }

    .kw-plan{
        width:95px;
        padding:15px;
    }

    .kw-price{
        font-size:17px;
    }

}

/* ===== KINO Premium Success ===== */
.kw-success-scope{
    padding:100px 15px;
    display:flex;
    justify-content:center;
}

.kw-success-card{
    max-width:480px;
    width:100%;
    padding:52px 46px;
    text-align:center;

    background:linear-gradient(180deg,#141414,#0a0a0a);
    border-radius:30px;

    box-shadow:0 45px 140px rgba(0,0,0,1);
    border:1px solid rgba(255,255,255,.06);
}

.kw-success-card h2{
    font-size:28px;
    color:#fff;
    margin-bottom:14px;
}

.kw-success-card p{
    color:#bcbcbc;
    font-size:14px;
    line-height:1.7;
    margin-bottom:30px;
}

.kw-success-price{
    font-size:34px;
    font-weight:800;
    color:#f5c542;
    margin-bottom:36px;
}

.kw-success-price small{
    font-size:14px;
    color:#aaa;
}

.kw-success-btn{
    display:inline-block;
    padding:16px 46px;

    background:linear-gradient(135deg,#f5c542,#ffde73);
    color:#000;

    font-size:16px;
    font-weight:700;
    text-decoration:none;

    border-radius:20px;
    box-shadow:0 18px 60px rgba(245,197,66,.7);
    transition:.25s;
}

.kw-success-btn:hover{
    transform:translateY(-2px);
}


.kw-card-btn{
width:100%;
margin-top:10px;
padding:14px;
border-radius:10px;
border:none;
font-size:16px;
cursor:pointer;
background:#635bff;
color:white;
font-weight:600;
}

.kw-card-btn:hover{
opacity:.9;
}