.locked-game .locked-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: #f8f9fa;
  }
  
  .locked-info {
    text-align: center;
    padding: 20px;
  }
  
  .lock-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
  }
  
  .unlock-button {
    margin-top: 12px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transition: all 0.2s ease;
  }
  
  .unlock-button.can-unlock {
    background: #3b82f6;
    color: white;
    cursor: pointer;
  }
  
  .unlock-button.can-unlock:hover {
    background: #2563eb;
  }