/* Membership Card Plugin Styles */

.mcp-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.mcp-virtual-card {
    background: linear-gradient(135deg, #1e1e2f 0%, #252446 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mcp-virtual-card:hover {
    transform: translateY(-5px);
}

.mcp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mcp-site-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffd700; /* Gold accent */
}

.mcp-card-body {
    text-align: center;
    margin-bottom: 30px;
}

.mcp-qr-code {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mcp-qr-code img {
    display: block;
    width: 180px;
    height: 180px;
}

.mcp-user-info {
    margin-top: 20px;
}

.mcp-user-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0 5px;
}

.mcp-membership-id {
    font-size: 0.9rem;
    color: #a0a0b0;
    margin: 0;
    font-family: 'Courier New', monospace;
}

.mcp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.mcp-expiry {
    font-size: 0.85rem;
    color: #d1d1e0;
}

.mcp-expiry strong {
    color: #ffffff;
    display: block;
    font-size: 0.95rem;
}

.mcp-status-badge {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mcp-download-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #ffd700;
    color: #1e1e2f;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 25px;
    transition: background 0.2s ease;
}

.mcp-download-btn:hover {
    background: #ffea70;
    color: #1e1e2f;
}
