﻿.fullscreen-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal Box */
.modal-box {
    width: 420px;
    height: auto;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

/* Close */
.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 20px;
}

/* Header */
.modal-header h {
    font-size: 18px;
    font-weight: 80;
    margin: 10px 0;
}

.modal-header p {
    color: #777;
    font-size: 14px;
}

/* Lock Icon */
.lock-icon {
    font-size: 22px;
    color: #F2994A;
}

/* Plans */
.plans {
    margin-top: 20px;
}

/* Plan Card */
.plan-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 15px;
    text-align: left;
    transition: 0.3s;
}

    /* Highlight */
    .plan-card.highlight {
        border: 2px solid #F2C94C;
        background: #fffaf2;
    }

/* Badge */
.badge {
    float: right;
    background: #F2C94C;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 10px;
}

/* Price */
.price {
    font-size: 20px;
    font-weight: bold;
}

    .price span {
        font-size: 14px;
        color: #777;
    }

.sub-text {
    color: #888;
    font-size: 13px;
}

/* Button */
.btn-gold {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #C7902E, #F2C94C);
    cursor: pointer;
    transition: 0.3s;
}

    .btn-gold:hover {
        transform: scale(1.03);
        box-shadow: 0 5px 15px rgba(242, 153, 74, 0.5);
    }

/* Footer */
.modal-footer {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
