/* Card layout */
.pincode-card {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Result text */
.result-count {
    color: #666;
    margin-bottom: 10px;
}

/* Table */
.pincode-table {
    width: 100%;
    border-collapse: collapse;
}

.pincode-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* 🔒 Blur locked rows */
.locked-row {
    filter: blur(5px);
    position: relative;
}

/* Overlay text */
.locked-row::after {
    content: "🔒 Unlock";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: #000;
}

/* Premium box */
.pincode-lock-box {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg,#fff3cd,#ffeeba);
    border-radius: 10px;
    text-align: center;
}

/* Button */
.unlock-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}