/* Container Styles */
#buypubg-verification-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.buypubg-auth-box input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.buypubg-auth-box button, .show-card-btn {
    background-color: #ff4500; /* BuyPubg Orange */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
}

.buypubg-auth-box button:hover, .show-card-btn:hover {
    background-color: #e03e00;
}

/* Card List Styles */
.buypubg-card-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ff4500;
    margin-bottom: 10px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 5px;
}

.card-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-img img {
    border-radius: 8px;
    border: 1px solid #eee;
}

.card-info {
    flex-grow: 1;
}

.card-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.card-action {
    min-width: 120px;
}

/* Modal Styles */
.buypubg-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
    align-items: center;
    justify-content: center;
}

.buypubg-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-body .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.modal-body .value {
    font-weight: bold;
}

.modal-body .code {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
}

.modal-footer {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-download {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.activation-guide {
    display: block;
    margin-top: 15px;
    color: #ff4500;
    text-decoration: none;
    font-size: 14px;
}